mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-02-23 21:37:34 +00:00
(emacs-version): Check for gtk' feature before x-toolkit' feature.
This commit is contained in:
parent
85f6be548e
commit
64bd6fd115
2 changed files with 6 additions and 1 deletions
|
|
@ -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)
|
||||
|
|
|
|||
|
|
@ -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)))
|
||||
|
|
|
|||
Loading…
Reference in a new issue