aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
Diffstat (limited to 'lisp')
-rw-r--r--lisp/server.el6
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/server.el b/lisp/server.el
index 40806a1b6c3..b9cca58ead4 100644
--- a/lisp/server.el
+++ b/lisp/server.el
@@ -323,7 +323,7 @@ message."
323 proc 323 proc
324 ;; See if this is the last frame for this client. 324 ;; See if this is the last frame for this client.
325 (< 1 (let ((frame-num 0)) 325 (< 1 (let ((frame-num 0))
326 (dolist ((f (frame-list))) 326 (dolist (f (frame-list))
327 (when (eq proc (frame-parameter f 'client)) 327 (when (eq proc (frame-parameter f 'client))
328 (setq frame-num (1+ frame-num)))) 328 (setq frame-num (1+ frame-num))))
329 frame-num))) 329 frame-num)))
@@ -755,9 +755,9 @@ The following commands are accepted by the client:
755 (with-selected-frame frame 755 (with-selected-frame frame
756 (switch-to-buffer (or (car buffers) 756 (switch-to-buffer (or (car buffers)
757 (get-buffer-create "*scratch*"))) 757 (get-buffer-create "*scratch*")))
758 (display-startup-echo-area-message))
758 (unless inhibit-splash-screen 759 (unless inhibit-splash-screen
759 (display-splash-screen)) 760 (display-splash-screen)))
760 (display-startup-echo-area-message)))
761 761
762 ;; Delete the client if necessary. 762 ;; Delete the client if necessary.
763 (cond 763 (cond