aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGerd Moellmann2000-12-27 14:34:09 +0000
committerGerd Moellmann2000-12-27 14:34:09 +0000
commit3fac5d64cc29de5fd3237004cd76276ec8261672 (patch)
treebdd72305132b50b19af84fba5443bb74b12e05f7
parent5bf045202fc9b22fb4f1d4d1fafb6d4066f418c6 (diff)
downloademacs-3fac5d64cc29de5fd3237004cd76276ec8261672.tar.gz
emacs-3fac5d64cc29de5fd3237004cd76276ec8261672.zip
(emacs-version): Print X scroll bar information.
-rw-r--r--lisp/version.el9
1 files changed, 7 insertions, 2 deletions
diff --git a/lisp/version.el b/lisp/version.el
index d2dc8518a7d..b90ce7ffad7 100644
--- a/lisp/version.el
+++ b/lisp/version.el
@@ -53,13 +53,18 @@ to the system configuration; look at `system-configuration' instead."
53 (interactive "P") 53 (interactive "P")
54 (let ((version-string 54 (let ((version-string
55 (format (if (not (interactive-p)) 55 (format (if (not (interactive-p))
56 "GNU Emacs %s (%s%s)\n of %s on %s" 56 "GNU Emacs %s (%s%s%s)\n of %s on %s"
57 "GNU Emacs %s (%s%s) of %s on %s") 57 "GNU Emacs %s (%s%s%s) of %s on %s")
58 emacs-version 58 emacs-version
59 system-configuration 59 system-configuration
60 (cond ((featurep 'motif) ", Motif") 60 (cond ((featurep 'motif) ", Motif")
61 ((featurep 'x-toolkit) ", X toolkit") 61 ((featurep 'x-toolkit) ", X toolkit")
62 (t "")) 62 (t ""))
63 (if (and (boundp 'x-toolkit-scroll-bars)
64 (memq x-toolkit-scroll-bars '(xaw xaw3d)))
65 (format ", %s scroll bars"
66 (capitalize (symbol-name x-toolkit-scroll-bars)))
67 "")
63 (format-time-string "%Y-%m-%d" emacs-build-time) 68 (format-time-string "%Y-%m-%d" emacs-build-time)
64 emacs-build-system))) 69 emacs-build-system)))
65 (if here 70 (if here