# HG changeset patch # User Richard M. Stallman # Date 757942182 0 # Node ID b88ee4b9c81e3a262b2d719efc4c6351234b316e # Parent f193f880c524a21146157d39fc12ce2737244811 (command-line-1): Improve echo area message wording. Don't print it if C-h C-p has been redefined. diff -r f193f880c524 -r b88ee4b9c81e lisp/startup.el --- a/lisp/startup.el Fri Jan 07 09:13:52 1994 +0000 +++ b/lisp/startup.el Fri Jan 07 11:29:42 1994 +0000 @@ -327,10 +327,8 @@ (defun command-line-1 (command-line-args-left) (or noninteractive (input-pending-p) init-file-had-error - (message (if (eq (key-binding "\C-h\C-p") 'describe-project) - "For information about the GNU Project and its goals, type C-h C-p." - (substitute-command-keys - "For information about the GNU Project and its goals, type \\[describe-project].")))) + (if (eq (key-binding "\C-h\C-p") 'describe-project) + (message "For more about the GNU Project, of which GNU Emacs is part, type C-h C-p."))) (if (null command-line-args-left) (cond ((and (not inhibit-startup-message) (not noninteractive) ;; Don't clobber a non-scratch buffer if init file