From: John Paul Wallington Date: Thu, 13 May 2004 13:01:01 +0000 (+0000) Subject: (emacs-version): Check for `gtk' feature before `x-toolkit' feature. X-Git-Tag: ttn-vms-21-2-B4~6245 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=64bd6fd115d9d29a385d4ff1de2aa85a95c1fd18;p=emacs.git (emacs-version): Check for `gtk' feature before `x-toolkit' feature. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index a03b43cfad6..9bc828226d3 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,8 @@ +2004-05-13 John Paul Wallington + + * version.el (emacs-version): Check for `gtk' feature before + `x-toolkit' feature. + 2004-05-13 Juanma Barranquero * help-fns.el (help-arg-highlighting-function) diff --git a/lisp/version.el b/lisp/version.el index 42dbb3f9c25..d489eeea02e 100644 --- a/lisp/version.el +++ b/lisp/version.el @@ -61,9 +61,9 @@ to the system configuration; look at `system-configuration' instead." system-configuration (cond ((featurep 'motif) (concat ", " (substring motif-version-string 4))) - ((featurep 'x-toolkit) ", X toolkit") ((featurep 'gtk) (concat ", GTK+ Version " gtk-version-string)) + ((featurep 'x-toolkit) ", X toolkit") (t "")) (if (and (boundp 'x-toolkit-scroll-bars) (memq x-toolkit-scroll-bars '(xaw xaw3d)))