]> code.delx.au - gnu-emacs/commitdiff
(display-splash-screen): Allow a prefix argument.
authorKenichi Handa <handa@m17n.org>
Tue, 26 Sep 2006 00:52:09 +0000 (00:52 +0000)
committerKenichi Handa <handa@m17n.org>
Tue, 26 Sep 2006 00:52:09 +0000 (00:52 +0000)
lisp/ChangeLog
lisp/startup.el

index 3ec1f6dc1c310d90da2941a4eeda34052f051c2c..8388c7af0badd05e3faa14ff780e4c6405173cd9 100644 (file)
@@ -1,3 +1,7 @@
+2006-09-26  Kenichi Handa  <handa@m17n.org>
+
+       * startup.el (display-splash-screen): Allow a prefix argument.
+
 2006-09-25  Jason Rumney  <jasonr@gnu.org>
 
        * subr.el (shell-quote-argument): Use DOS logic for Windows
index cd256f2ced0639896a9c7279f479665cafd24f02..664fd285754addaa0892b70db69aae0ca139c49d 100644 (file)
@@ -1626,8 +1626,9 @@ Type \\[describe-distribution] for information on getting the latest version."))
 (defun display-splash-screen (&optional hide-on-input)
   "Display splash screen according to display.
 Fancy splash screens are used on graphic displays,
-normal otherwise."
-  (interactive)
+normal otherwise.
+With a prefix argument, any user input hides the splash screen."
+  (interactive "P")
   (if (use-fancy-splash-screens-p)
       (fancy-splash-screens hide-on-input)
     (normal-splash-screen hide-on-input)))