From eb89917c15d42b9d701e1c391add67b0665cfbc9 Mon Sep 17 00:00:00 2001 From: Kenichi Handa Date: Tue, 26 Sep 2006 00:52:09 +0000 Subject: [PATCH] (display-splash-screen): Allow a prefix argument. --- lisp/ChangeLog | 4 ++++ lisp/startup.el | 5 +++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 3ec1f6dc1c3..8388c7af0ba 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,7 @@ +2006-09-26 Kenichi Handa + + * startup.el (display-splash-screen): Allow a prefix argument. + 2006-09-25 Jason Rumney * subr.el (shell-quote-argument): Use DOS logic for Windows diff --git a/lisp/startup.el b/lisp/startup.el index cd256f2ced0..664fd285754 100644 --- a/lisp/startup.el +++ b/lisp/startup.el @@ -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))) -- 2.39.2