]> git.eshelyaron.com Git - emacs.git/commitdiff
(emacs-version): Check for `gtk' feature before `x-toolkit' feature.
authorJohn Paul Wallington <jpw@pobox.com>
Thu, 13 May 2004 13:01:01 +0000 (13:01 +0000)
committerJohn Paul Wallington <jpw@pobox.com>
Thu, 13 May 2004 13:01:01 +0000 (13:01 +0000)
lisp/ChangeLog
lisp/version.el

index a03b43cfad6edc856fec710d45b31c743bd07b96..9bc828226d3239d9710cef36ce204a5ff9225a78 100644 (file)
@@ -1,3 +1,8 @@
+2004-05-13  John Paul Wallington  <jpw@gnu.org>
+
+       * version.el (emacs-version): Check for `gtk' feature before
+       `x-toolkit' feature.
+
 2004-05-13  Juanma Barranquero  <lektu@terra.es>
 
        * help-fns.el (help-arg-highlighting-function)
index 42dbb3f9c2565e7a22e9d0a18ebf436f77207d99..d489eeea02ea15233677680aeec17cd5d55dd264 100644 (file)
@@ -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)))