# HG changeset patch # User Gerd Moellmann # Date 977927649 0 # Node ID 6c2c536e15aa7ec48e043b387866765d6e3e5d93 # Parent 1d671133e618d4353e7b54a5b77f68b9d5ec1b61 (emacs-version): Print X scroll bar information. diff -r 1d671133e618 -r 6c2c536e15aa lisp/version.el --- a/lisp/version.el Wed Dec 27 14:33:11 2000 +0000 +++ b/lisp/version.el Wed Dec 27 14:34:09 2000 +0000 @@ -53,13 +53,18 @@ (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