mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-03-31 11:10:51 -07:00
(emacs-version): Print X scroll bar information.
This commit is contained in:
parent
5bf045202f
commit
3fac5d64cc
1 changed files with 7 additions and 2 deletions
|
|
@ -53,13 +53,18 @@ to the system configuration; look at `system-configuration' instead."
|
|||
(interactive "P")
|
||||
(let ((version-string
|
||||
(format (if (not (interactive-p))
|
||||
"GNU Emacs %s (%s%s)\n of %s on %s"
|
||||
"GNU Emacs %s (%s%s) of %s on %s")
|
||||
"GNU Emacs %s (%s%s%s)\n of %s on %s"
|
||||
"GNU Emacs %s (%s%s%s) of %s on %s")
|
||||
emacs-version
|
||||
system-configuration
|
||||
(cond ((featurep 'motif) ", Motif")
|
||||
((featurep 'x-toolkit) ", X toolkit")
|
||||
(t ""))
|
||||
(if (and (boundp 'x-toolkit-scroll-bars)
|
||||
(memq x-toolkit-scroll-bars '(xaw xaw3d)))
|
||||
(format ", %s scroll bars"
|
||||
(capitalize (symbol-name x-toolkit-scroll-bars)))
|
||||
"")
|
||||
(format-time-string "%Y-%m-%d" emacs-build-time)
|
||||
emacs-build-system)))
|
||||
(if here
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue