]> git.eshelyaron.com Git - emacs.git/commitdiff
(startup-echo-area-message): Display a different message in daemon
authorChong Yidong <cyd@stupidchicken.com>
Tue, 4 Nov 2008 16:54:25 +0000 (16:54 +0000)
committerChong Yidong <cyd@stupidchicken.com>
Tue, 4 Nov 2008 16:54:25 +0000 (16:54 +0000)
mode.  Suggested by Stephen Turnbull.

lisp/startup.el

index 1f571c63bfcf0d0dc5804bc2cfee46149e035f22..1532093ceec78df1354de4d71d4afb13178e27b0 100644 (file)
@@ -1985,12 +1985,14 @@ Type \\[describe-distribution] for information on "))
   (insert "\tBuying printed manuals from the FSF\n"))
 
 (defun startup-echo-area-message ()
-  (if (eq (key-binding "\C-h\C-a") 'about-emacs)
-      "For information about GNU Emacs and the GNU system, type C-h C-a."
-    (substitute-command-keys
-     "For information about GNU Emacs and the GNU system, type \
-\\[about-emacs].")))
-
+  (cond ((daemonp)
+        "Starting Emacs daemon.")
+       ((eq (key-binding "\C-h\C-a") 'about-emacs)
+        "For information about GNU Emacs and the GNU system, type C-h C-a.")
+       (t
+        (substitute-command-keys
+         "For information about GNU Emacs and the GNU system, type \
+\\[about-emacs]."))))
 
 (defun display-startup-echo-area-message ()
   (let ((resize-mini-windows t))