diff options
| author | Kenichi Handa | 2006-09-26 00:52:09 +0000 |
|---|---|---|
| committer | Kenichi Handa | 2006-09-26 00:52:09 +0000 |
| commit | eb89917c15d42b9d701e1c391add67b0665cfbc9 (patch) | |
| tree | bd89ce87ef0c88ae5eb6871d71f0597736c3fa1e | |
| parent | 4bbf6b4158630ee19cbe1a726739cd1bcf6e4cf1 (diff) | |
| download | emacs-eb89917c15d42b9d701e1c391add67b0665cfbc9.tar.gz emacs-eb89917c15d42b9d701e1c391add67b0665cfbc9.zip | |
(display-splash-screen): Allow a prefix argument.
| -rw-r--r-- | lisp/ChangeLog | 4 | ||||
| -rw-r--r-- | 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 @@ | |||
| 1 | 2006-09-26 Kenichi Handa <handa@m17n.org> | ||
| 2 | |||
| 3 | * startup.el (display-splash-screen): Allow a prefix argument. | ||
| 4 | |||
| 1 | 2006-09-25 Jason Rumney <jasonr@gnu.org> | 5 | 2006-09-25 Jason Rumney <jasonr@gnu.org> |
| 2 | 6 | ||
| 3 | * subr.el (shell-quote-argument): Use DOS logic for Windows | 7 | * 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.")) | |||
| 1626 | (defun display-splash-screen (&optional hide-on-input) | 1626 | (defun display-splash-screen (&optional hide-on-input) |
| 1627 | "Display splash screen according to display. | 1627 | "Display splash screen according to display. |
| 1628 | Fancy splash screens are used on graphic displays, | 1628 | Fancy splash screens are used on graphic displays, |
| 1629 | normal otherwise." | 1629 | normal otherwise. |
| 1630 | (interactive) | 1630 | With a prefix argument, any user input hides the splash screen." |
| 1631 | (interactive "P") | ||
| 1631 | (if (use-fancy-splash-screens-p) | 1632 | (if (use-fancy-splash-screens-p) |
| 1632 | (fancy-splash-screens hide-on-input) | 1633 | (fancy-splash-screens hide-on-input) |
| 1633 | (normal-splash-screen hide-on-input))) | 1634 | (normal-splash-screen hide-on-input))) |