From: espen Date: Sun, 27 Feb 2005 19:15:07 +0000 (+0000) Subject: Display Lisp implementation in main window X-Git-Tag: clg-0-90~52 X-Git-Url: https://git.distorted.org.uk/~mdw/clg/commitdiff_plain/41aa910858a1c6c066b7e228bbcca11644f17f07 Display Lisp implementation in main window --- diff --git a/examples/testgtk.lisp b/examples/testgtk.lisp index 169e6bf..fcd4ad8 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