diff options
| author | Stefan Monnier | 2007-09-01 02:17:30 +0000 |
|---|---|---|
| committer | Stefan Monnier | 2007-09-01 02:17:30 +0000 |
| commit | ecaf73343a56a8e46c88db245778e122a0696eb7 (patch) | |
| tree | cf20a18e1b1e2692731ee0ed1313c791873a6e0c | |
| parent | bdca334bebbf1a32d687dc8795b23b5051988ad4 (diff) | |
| download | emacs-ecaf73343a56a8e46c88db245778e122a0696eb7.tar.gz emacs-ecaf73343a56a8e46c88db245778e122a0696eb7.zip | |
(server-process-filter): Don't display the splash screen.
It's annoying enough on the initial screen and becomes positively
obnoxious here.
| -rw-r--r-- | lisp/ChangeLog | 6 | ||||
| -rw-r--r-- | lisp/server.el | 14 |
2 files changed, 6 insertions, 14 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 1f9f7d6258a..3895f9510ee 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,9 @@ | |||
| 1 | 2007-09-01 Stefan Monnier <monnier@iro.umontreal.ca> | ||
| 2 | |||
| 3 | * server.el (server-process-filter): Don't display the splash screen. | ||
| 4 | It's annoying enough on the initial screen and becomes positively | ||
| 5 | obnoxious here. | ||
| 6 | |||
| 1 | 2007-08-31 Stefan Monnier <monnier@iro.umontreal.ca> | 7 | 2007-08-31 Stefan Monnier <monnier@iro.umontreal.ca> |
| 2 | 8 | ||
| 3 | * emacs-lisp/avl-tree.el: Use defstruct rather than macros. | 9 | * emacs-lisp/avl-tree.el: Use defstruct rather than macros. |
diff --git a/lisp/server.el b/lisp/server.el index 7e761d3991a..be271051095 100644 --- a/lisp/server.el +++ b/lisp/server.el | |||
| @@ -904,20 +904,6 @@ The following commands are accepted by the client: | |||
| 904 | (setq buffers (server-visit-files files client nowait)) | 904 | (setq buffers (server-visit-files files client nowait)) |
| 905 | (run-hooks 'post-command-hook)) | 905 | (run-hooks 'post-command-hook)) |
| 906 | 906 | ||
| 907 | (when frame | ||
| 908 | (with-selected-frame frame | ||
| 909 | (display-startup-echo-area-message) | ||
| 910 | (unless inhibit-splash-screen | ||
| 911 | (condition-case err | ||
| 912 | ;; This looks scary because `fancy-splash-screens' | ||
| 913 | ;; will call `recursive-edit' from a process filter. | ||
| 914 | ;; However, that should be safe to do now. | ||
| 915 | (display-splash-screen t) | ||
| 916 | ;; `recursive-edit' will throw an error if Emacs is | ||
| 917 | ;; already doing a recursive edit elsewhere. Catch it | ||
| 918 | ;; here so that we can finish normally. | ||
| 919 | (error nil))))) | ||
| 920 | |||
| 921 | ;; Delete the client if necessary. | 907 | ;; Delete the client if necessary. |
| 922 | (cond | 908 | (cond |
| 923 | (nowait | 909 | (nowait |