changeset 45532:6d0025248c2b

Fix previous change.
author Colin Walters <walters@gnu.org>
date Mon, 27 May 2002 02:00:54 +0000
parents 8873fff421e7
children 70f18b582c77
files lisp/startup.el man/cmdargs.texi
diffstat 2 files changed, 6 insertions(+), 6 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/startup.el	Sun May 26 20:58:40 2002 +0000
+++ b/lisp/startup.el	Mon May 27 02:00:54 2002 +0000
@@ -70,8 +70,8 @@
 ;; -no-site-file             Do not load "site-start.el".  (This is the ONLY
 ;; --no-site-file            way to prevent loading that file.)
 ;; -------------------------
-;; -nosplash                 Don't display a splash screen on startup.
-;; --nosplash
+;; -no-splash                 Don't display a splash screen on startup.
+;; --no-splash
 ;; -------------------------
 ;; -u USER                   Load USER's init file instead of the init
 ;; -user USER                file belonging to the user starting Emacs.
@@ -1508,7 +1508,7 @@
 	    ;; and long versions of what's on command-switch-alist.
 	    (longopts
 	     (append '(("--funcall") ("--load") ("--insert") ("--kill")
-		       ("--directory") ("--eval") ("--execute") ("--nosplash")
+		       ("--directory") ("--eval") ("--execute") ("--no-splash")
 		       ("--find-file") ("--visit") ("--file"))
 		     (mapcar (lambda (elt)
 			       (list (concat "-" (car elt))))
@@ -1561,7 +1561,7 @@
 			 (funcall (cdr tem) argi))
 		     (funcall (cdr tem) argi)))
 
-		  ((string-equal argi "-nosplash")
+		  ((string-equal argi "-no-splash")
 		   (setq inhibit-startup-message t))
 
 		  ((member argi '("-f"	;what the manual claims
--- a/man/cmdargs.texi	Sun May 26 20:58:40 2002 +0000
+++ b/man/cmdargs.texi	Mon May 27 02:00:54 2002 +0000
@@ -215,8 +215,8 @@
 and @samp{-batch} have no effect on the loading of this file---this is
 the only option that blocks it.
 
-@item --nosplash
-@opindex --nosplash
+@item --no-splash
+@opindex --no-splash
 @vindex inhibit-startup-message
 Do not display a splash screen on startup; this is equivlaent to
 setting the variable @code{inhibit-startup-message} to non-nil.