changeset 83001:67a56c2e50c6

Add "multi-tty" to emacs-version output. lisp/version.el (emacs-version): Add multi-tty to output if (featurep 'multi-tty). Suggested by Romain Francoise <romain@orebokech.com>. git-archimport-id: lorentey@elte.hu--2004/emacs--multi-tty--0--patch-41
author Karoly Lorentey <lorentey@elte.hu>
date Sat, 03 Jan 2004 16:51:56 +0000
parents 77022bc45155
children e654e1383970
files lisp/version.el
diffstat 1 files changed, 3 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/version.el	Sat Jan 03 16:49:09 2004 +0000
+++ b/lisp/version.el	Sat Jan 03 16:51:56 2004 +0000
@@ -55,8 +55,8 @@
   (interactive "P")
   (let ((version-string
          (format (if (not (interactive-p))
-		     "GNU Emacs %s (%s%s%s)\n of %s on %s"
-		   "GNU Emacs %s (%s%s%s) of %s on %s")
+		     "GNU Emacs %s (%s%s%s%s)\n of %s on %s"
+		   "GNU Emacs %s (%s%s%s%s) of %s on %s")
                  emacs-version
 		 system-configuration
 		 (cond ((featurep 'motif)
@@ -70,6 +70,7 @@
 		     (format ", %s scroll bars"
 			     (capitalize (symbol-name x-toolkit-scroll-bars)))
 		   "")
+		 (if (featurep 'multi-tty) ", multi-tty" "")
 		 (format-time-string "%Y-%m-%d" emacs-build-time)
                  emacs-build-system)))
     (if here