From c2ef984cfe5918fbac85bfd7422ae4d988ec6043 Mon Sep 17 00:00:00 2001 From: espen Date: Sun, 27 Feb 2005 19:15:07 +0000 Subject: [PATCH] Display Lisp implementation in main window --- examples/testgtk.lisp | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/examples/testgtk.lisp b/examples/testgtk.lisp index 76edead..e5b7961 100644 --- a/examples/testgtk.lisp +++ b/examples/testgtk.lisp @@ -15,7 +15,7 @@ ;; License along with this library; if not, write to the Free Software ;; Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -;; $Id: testgtk.lisp,v 1.22 2005-02-27 14:24:49 espen Exp $ +;; $Id: testgtk.lisp,v 1.23 2005-02-27 19:15:07 espen Exp $ ;(use-package "GTK") @@ -1775,6 +1775,13 @@ This one is underlined (こんにちは) in quite a funky fashion" :child-args '(:expand nil) :child (list (make-instance 'label :label (gtk-version)) :fill nil) :child (list (make-instance 'label :label "clg CVS version") :fill nil) + :child (list (make-instance 'label + :label #-cmu(format nil "~A (~A)" + (lisp-implementation-type) + (lisp-implementation-version)) + ;; The version string in CMUCL is far too long + #+cmu(lisp-implementation-type)) + :fill nil) :child (list scrolled-window :expand t) :child (make-instance 'h-separator) :child (make-instance 'v-box -- 2.11.0