Merge from emacs--devo--0
[bpt/emacs.git] / lisp / server.el
1 ;;; server.el --- Lisp code for GNU Emacs running as server process
2
3 ;; Copyright (C) 1986, 1987, 1992, 1994, 1995, 1996, 1997, 1998, 1999, 2000,
4 ;; 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
5
6 ;; Author: William Sommerfeld <wesommer@athena.mit.edu>
7 ;; Maintainer: FSF
8 ;; Keywords: processes
9
10 ;; Changes by peck@sun.com and by rms.
11 ;; Overhaul by Karoly Lorentey <lorentey@elte.hu> for multi-tty support.
12
13 ;; This file is part of GNU Emacs.
14
15 ;; GNU Emacs is free software; you can redistribute it and/or modify
16 ;; it under the terms of the GNU General Public License as published by
17 ;; the Free Software Foundation; either version 3, or (at your option)
18 ;; any later version.
19
20 ;; GNU Emacs is distributed in the hope that it will be useful,
21 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
22 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
23 ;; GNU General Public License for more details.
24
25 ;; You should have received a copy of the GNU General Public License
26 ;; along with GNU Emacs; see the file COPYING. If not, write to the
27 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
28 ;; Boston, MA 02110-1301, USA.
29
30 ;;; Commentary:
31
32 ;; This Lisp code is run in Emacs when it is to operate as
33 ;; a server for other processes.
34
35 ;; Load this library and do M-x server-edit to enable Emacs as a server.
36 ;; Emacs opens up a socket for communication with clients. If there are no
37 ;; client buffers to edit, server-edit acts like (switch-to-buffer
38 ;; (other-buffer))
39
40 ;; When some other program runs "the editor" to edit a file,
41 ;; "the editor" can be the Emacs client program ../lib-src/emacsclient.
42 ;; This program transmits the file names to Emacs through
43 ;; the server subprocess, and Emacs visits them and lets you edit them.
44
45 ;; Note that any number of clients may dispatch files to Emacs to be edited.
46
47 ;; When you finish editing a Server buffer, again call server-edit
48 ;; to mark that buffer as done for the client and switch to the next
49 ;; Server buffer. When all the buffers for a client have been edited
50 ;; and exited with server-edit, the client "editor" will return
51 ;; to the program that invoked it.
52
53 ;; Your editing commands and Emacs's display output go to and from
54 ;; the terminal in the usual way. Thus, server operation is possible
55 ;; only when Emacs can talk to the terminal at the time you invoke
56 ;; the client. This is possible in four cases:
57
58 ;; 1. On a window system, where Emacs runs in one window and the
59 ;; program that wants to use "the editor" runs in another.
60
61 ;; 2. On a multi-terminal system, where Emacs runs on one terminal and the
62 ;; program that wants to use "the editor" runs on another.
63
64 ;; 3. When the program that wants to use "the editor" is running
65 ;; as a subprocess of Emacs.
66
67 ;; 4. On a system with job control, when Emacs is suspended, the program
68 ;; that wants to use "the editor" will stop and display
69 ;; "Waiting for Emacs...". It can then be suspended, and Emacs can be
70 ;; brought into the foreground for editing. When done editing, Emacs is
71 ;; suspended again, and the client program is brought into the foreground.
72
73 ;; The buffer local variable "server-buffer-clients" lists
74 ;; the clients who are waiting for this buffer to be edited.
75 ;; The global variable "server-clients" lists all the waiting clients,
76 ;; and which files are yet to be edited for each.
77
78 ;; Todo:
79
80 ;; - handle command-line-args-left.
81 ;; - move most of the args processing and decision making from emacsclient.c
82 ;; to here.
83 ;; - fix up handling of the client's environment (place it in the terminal?).
84
85 ;;; Code:
86
87 (eval-when-compile (require 'cl))
88
89 (defgroup server nil
90 "Emacs running as a server process."
91 :group 'external)
92
93 (defcustom server-use-tcp nil
94 "If non-nil, use TCP sockets instead of local sockets."
95 :set #'(lambda (sym val)
96 (unless (featurep 'make-network-process '(:family local))
97 (setq val t)
98 (unless load-in-progress
99 (message "Local sockets unsupported, using TCP sockets")))
100 (when val (random t))
101 (set-default sym val))
102 :group 'server
103 :type 'boolean
104 :version "22.1")
105
106 (defcustom server-host nil
107 "The name or IP address to use as host address of the server process.
108 If set, the server accepts remote connections; otherwise it is local."
109 :group 'server
110 :type '(choice
111 (string :tag "Name or IP address")
112 (const :tag "Local" nil))
113 :version "22.1")
114 (put 'server-host 'risky-local-variable t)
115
116 (defcustom server-auth-dir (concat user-emacs-directory "server/")
117 "Directory for server authentication files."
118 :group 'server
119 :type 'directory
120 :version "22.1")
121 (put 'server-auth-dir 'risky-local-variable t)
122
123 (defcustom server-raise-frame t
124 "If non-nil, raise frame when switching to a buffer."
125 :group 'server
126 :type 'boolean
127 :version "22.1")
128
129 (defcustom server-visit-hook nil
130 "Hook run when visiting a file for the Emacs server."
131 :group 'server
132 :type 'hook)
133
134 (defcustom server-switch-hook nil
135 "Hook run when switching to a buffer for the Emacs server."
136 :group 'server
137 :type 'hook)
138
139 (defcustom server-done-hook nil
140 "Hook run when done editing a buffer for the Emacs server."
141 :group 'server
142 :type 'hook)
143
144 (defvar server-process nil
145 "The current server process.")
146
147 (defvar server-clients nil
148 "List of current server clients.
149 Each element is a process.")
150
151 (defvar server-buffer-clients nil
152 "List of client processes requesting editing of current buffer.")
153 (make-variable-buffer-local 'server-buffer-clients)
154 ;; Changing major modes should not erase this local.
155 (put 'server-buffer-clients 'permanent-local t)
156
157 (defcustom server-window nil
158 "Specification of the window to use for selecting Emacs server buffers.
159 If nil, use the selected window.
160 If it is a function, it should take one argument (a buffer) and
161 display and select it. A common value is `pop-to-buffer'.
162 If it is a window, use that.
163 If it is a frame, use the frame's selected window.
164
165 It is not meaningful to set this to a specific frame or window with Custom.
166 Only programs can do so."
167 :group 'server
168 :version "22.1"
169 :type '(choice (const :tag "Use selected window"
170 :match (lambda (widget value)
171 (not (functionp value)))
172 nil)
173 (function-item :tag "Display in new frame" switch-to-buffer-other-frame)
174 (function-item :tag "Use pop-to-buffer" pop-to-buffer)
175 (function :tag "Other function")))
176
177 (defcustom server-temp-file-regexp "^/tmp/Re\\|/draft$"
178 "Regexp matching names of temporary files.
179 These are deleted and reused after each edit by the programs that
180 invoke the Emacs server."
181 :group 'server
182 :type 'regexp)
183
184 (defcustom server-kill-new-buffers t
185 "Whether to kill buffers when done with them.
186 If non-nil, kill a buffer unless it already existed before editing
187 it with the Emacs server. If nil, kill only buffers as specified by
188 `server-temp-file-regexp'.
189 Please note that only buffers that still have a client are killed,
190 i.e. buffers visited with \"emacsclient --no-wait\" are never killed in
191 this way."
192 :group 'server
193 :type 'boolean
194 :version "21.1")
195
196 (or (assq 'server-buffer-clients minor-mode-alist)
197 (push '(server-buffer-clients " Server") minor-mode-alist))
198
199 (defvar server-existing-buffer nil
200 "Non-nil means the buffer existed before the server was asked to visit it.
201 This means that the server should not kill the buffer when you say you
202 are done with it in the server.")
203 (make-variable-buffer-local 'server-existing-buffer)
204
205 (defvar server-name "server")
206
207 (defvar server-socket-dir nil
208 "The directory in which to place the server socket.
209 Initialized by `server-start'.")
210
211 (defun server-clients-with (property value)
212 "Return a list of clients with PROPERTY set to VALUE."
213 (let (result)
214 (dolist (proc server-clients result)
215 (when (equal value (process-get proc property))
216 (push proc result)))))
217
218 (defun server-add-client (proc)
219 "Create a client for process PROC, if it doesn't already have one.
220 New clients have no properties."
221 (add-to-list 'server-clients proc))
222
223 (defmacro server-with-environment (env vars &rest body)
224 "Evaluate BODY with environment variables VARS set to those in ENV.
225 The environment variables are then restored to their previous values.
226
227 VARS should be a list of strings.
228 ENV should be in the same format as `process-environment'."
229 (declare (indent 2))
230 (let ((var (make-symbol "var"))
231 (value (make-symbol "value")))
232 `(let ((process-environment process-environment))
233 (dolist (,var ,vars)
234 (let ((,value (getenv-internal ,var ,env)))
235 (push (if (null ,value)
236 ,var
237 (concat ,var "=" ,value))
238 process-environment)))
239 (progn ,@body))))
240
241 (defun server-delete-client (proc &optional noframe)
242 "Delete PROC, including its buffers, terminals and frames.
243 If NOFRAME is non-nil, let the frames live. (To be used from
244 `delete-frame-functions'.)"
245 (server-log (concat "server-delete-client" (if noframe " noframe")) proc)
246 ;; Force a new lookup of client (prevents infinite recursion).
247 (when (memq proc server-clients)
248 (let ((buffers (process-get proc 'buffers)))
249
250 ;; Kill the client's buffers.
251 (dolist (buf buffers)
252 (when (buffer-live-p buf)
253 (with-current-buffer buf
254 ;; Kill the buffer if necessary.
255 (when (and (equal server-buffer-clients
256 (list proc))
257 (or (and server-kill-new-buffers
258 (not server-existing-buffer))
259 (server-temp-file-p))
260 (not (buffer-modified-p)))
261 (let (flag)
262 (unwind-protect
263 (progn (setq server-buffer-clients nil)
264 (kill-buffer (current-buffer))
265 (setq flag t))
266 (unless flag
267 ;; Restore clients if user pressed C-g in `kill-buffer'.
268 (setq server-buffer-clients (list proc)))))))))
269
270 ;; Delete the client's frames.
271 (unless noframe
272 (dolist (frame (frame-list))
273 (when (and (frame-live-p frame)
274 (equal proc (frame-parameter frame 'client)))
275 ;; Prevent `server-handle-delete-frame' from calling us
276 ;; recursively.
277 (set-frame-parameter frame 'client nil)
278 (delete-frame frame))))
279
280 (setq server-clients (delq proc server-clients))
281
282 ;; Delete the client's tty.
283 (let ((terminal (process-get proc 'terminal)))
284 ;; Only delete the terminal if it is non-nil.
285 (when (and terminal (eq (terminal-live-p terminal) t))
286 (delete-terminal terminal)))
287
288 ;; Delete the client's process.
289 (if (eq (process-status proc) 'open)
290 (delete-process proc))
291
292 (server-log "Deleted" proc))))
293
294 (defun server-log (string &optional client)
295 "If a *server* buffer exists, write STRING to it for logging purposes.
296 If CLIENT is non-nil, add a description of it to the logged message."
297 (when (get-buffer "*server*")
298 (with-current-buffer "*server*"
299 (goto-char (point-max))
300 (insert (current-time-string)
301 (cond
302 ((null client) " ")
303 ((listp client) (format " %s: " (car client)))
304 (t (format " %s: " client)))
305 string)
306 (or (bolp) (newline)))))
307
308 (defun server-sentinel (proc msg)
309 "The process sentinel for Emacs server connections."
310 ;; If this is a new client process, set the query-on-exit flag to nil
311 ;; for this process (it isn't inherited from the server process).
312 (when (and (eq (process-status proc) 'open)
313 (process-query-on-exit-flag proc))
314 (set-process-query-on-exit-flag proc nil))
315 ;; Delete the associated connection file, if applicable.
316 ;; This is actually problematic: the file may have been overwritten by
317 ;; another Emacs server in the mean time, so it's not ours any more.
318 ;; (and (process-contact proc :server)
319 ;; (eq (process-status proc) 'closed)
320 ;; (ignore-errors (delete-file (process-get proc :server-file))))
321 (server-log (format "Status changed to %s: %s" (process-status proc) msg) proc)
322 (server-delete-client proc))
323
324 (defun server-select-display (display)
325 ;; If the current frame is on `display' we're all set.
326 ;; Similarly if we are unable to open a frames on other displays, there's
327 ;; nothing more we can do.
328 (unless (or (not (fboundp 'make-frame-on-display))
329 (equal (frame-parameter (selected-frame) 'display) display))
330 ;; Otherwise, look for an existing frame there and select it.
331 (dolist (frame (frame-list))
332 (when (equal (frame-parameter frame 'display) display)
333 (select-frame frame)))
334 ;; If there's no frame on that display yet, create and select one.
335 (unless (equal (frame-parameter (selected-frame) 'display) display)
336 (let* ((buffer (generate-new-buffer " *server-dummy*"))
337 (frame (make-frame-on-display
338 display
339 ;; Make it display (and remember) some dummy buffer, so
340 ;; we can detect later if the frame is in use or not.
341 `((server-dummy-buffer . ,buffer)
342 ;; This frame may be deleted later (see
343 ;; server-unselect-display) so we want it to be as
344 ;; unobtrusive as possible.
345 (visibility . nil)))))
346 (select-frame frame)
347 (set-window-buffer (selected-window) buffer)
348 frame))))
349
350 (defun server-unselect-display (frame)
351 (when (frame-live-p frame)
352 ;; If the temporary frame is in use (displays something real), make it
353 ;; visible. If not (which can happen if the user's customizations call
354 ;; pop-to-buffer etc.), delete it to avoid preserving the connection after
355 ;; the last real frame is deleted.
356 (if (and (eq (frame-first-window frame)
357 (next-window (frame-first-window frame) 'nomini))
358 (eq (window-buffer (frame-first-window frame))
359 (frame-parameter frame 'server-dummy-buffer)))
360 ;; The temp frame still only shows one buffer, and that is the
361 ;; internal temp buffer.
362 (delete-frame frame)
363 (set-frame-parameter frame 'visibility t))
364 (kill-buffer (frame-parameter frame 'server-dummy-buffer))
365 (set-frame-parameter frame 'server-dummy-buffer nil)))
366
367 (defun server-handle-delete-frame (frame)
368 "Delete the client connection when the emacsclient frame is deleted."
369 (let ((proc (frame-parameter frame 'client)))
370 (when (and (frame-live-p frame)
371 proc
372 ;; See if this is the last frame for this client.
373 (>= 1 (let ((frame-num 0))
374 (dolist (f (frame-list))
375 (when (eq proc (frame-parameter f 'client))
376 (setq frame-num (1+ frame-num))))
377 frame-num)))
378 (server-log (format "server-handle-delete-frame, frame %s" frame) proc)
379 (server-delete-client proc 'noframe)))) ; Let delete-frame delete the frame later.
380
381 (defun server-handle-suspend-tty (terminal)
382 "Notify the emacsclient process to suspend itself when its tty device is suspended."
383 (dolist (proc (server-clients-with 'terminal terminal))
384 (server-log (format "server-handle-suspend-tty, terminal %s" terminal) proc)
385 (condition-case err
386 (server-send-string proc "-suspend \n")
387 (file-error ;The pipe/socket was closed.
388 (ignore-errors (server-delete-client proc))))))
389
390 (defun server-unquote-arg (arg)
391 "Remove &-quotation from ARG.
392 See `server-quote-arg' and `server-process-filter'."
393 (replace-regexp-in-string
394 "&." (lambda (s)
395 (case (aref s 1)
396 (?& "&")
397 (?- "-")
398 (?n "\n")
399 (t " ")))
400 arg t t))
401
402 (defun server-quote-arg (arg)
403 "In ARG, insert a & before each &, each space, each newline, and -.
404 Change spaces to underscores, too, so that the return value never
405 contains a space.
406
407 See `server-unquote-arg' and `server-process-filter'."
408 (replace-regexp-in-string
409 "[-&\n ]" (lambda (s)
410 (case (aref s 0)
411 (?& "&&")
412 (?- "&-")
413 (?\n "&n")
414 (?\s "&_")))
415 arg t t))
416
417 (defun server-send-string (proc string)
418 "A wrapper around `proc-send-string' for logging."
419 (server-log (concat "Sent " string) proc)
420 (process-send-string proc string))
421
422 (defun server-ensure-safe-dir (dir)
423 "Make sure DIR is a directory with no race-condition issues.
424 Creates the directory if necessary and makes sure:
425 - there's no symlink involved
426 - it's owned by us
427 - it's not readable/writable by anybody else."
428 (setq dir (directory-file-name dir))
429 (let ((attrs (file-attributes dir)))
430 (unless attrs
431 (letf (((default-file-modes) ?\700)) (make-directory dir t))
432 (setq attrs (file-attributes dir)))
433 ;; Check that it's safe for use.
434 (unless (and (eq t (car attrs)) (eql (nth 2 attrs) (user-uid))
435 (or (eq system-type 'windows-nt)
436 (zerop (logand ?\077 (file-modes dir)))))
437 (error "The directory %s is unsafe" dir))))
438
439 ;;;###autoload
440 (defun server-start (&optional leave-dead)
441 "Allow this Emacs process to be a server for client processes.
442 This starts a server communications subprocess through which
443 client \"editors\" can send your editing commands to this Emacs
444 job. To use the server, set up the program `emacsclient' in the
445 Emacs distribution as your standard \"editor\".
446
447 Optional argument LEAVE-DEAD (interactively, a prefix arg) means just
448 kill any existing server communications subprocess."
449 (interactive "P")
450 (when (or
451 (not server-clients)
452 (yes-or-no-p
453 "The current server still has clients; delete them? "))
454 ;; It is safe to get the user id now.
455 (setq server-socket-dir (or server-socket-dir
456 (format "/tmp/emacs%d" (user-uid))))
457 (when server-process
458 ;; kill it dead!
459 (ignore-errors (delete-process server-process)))
460 ;; Delete the socket files made by previous server invocations.
461 (condition-case ()
462 (delete-file (expand-file-name server-name server-socket-dir))
463 (error nil))
464 ;; If this Emacs already had a server, clear out associated status.
465 (while server-clients
466 (server-delete-client (car server-clients)))
467 ;; Now any previous server is properly stopped.
468 (if leave-dead
469 (progn
470 (server-log (message "Server stopped"))
471 (setq server-process nil))
472 (let* ((server-dir (if server-use-tcp server-auth-dir server-socket-dir))
473 (server-file (expand-file-name server-name server-dir)))
474 ;; Make sure there is a safe directory in which to place the socket.
475 (server-ensure-safe-dir server-dir)
476 ;; Remove any leftover socket or authentication file.
477 (ignore-errors (delete-file server-file))
478 (when server-process
479 (server-log (message "Restarting server")))
480 (letf (((default-file-modes) ?\700))
481 (add-hook 'suspend-tty-functions 'server-handle-suspend-tty)
482 (add-hook 'delete-frame-functions 'server-handle-delete-frame)
483 (add-hook 'kill-buffer-query-functions 'server-kill-buffer-query-function)
484 (add-hook 'kill-emacs-query-functions 'server-kill-emacs-query-function)
485 (add-hook 'kill-emacs-hook (lambda () (server-mode -1))) ;Cleanup upon exit.
486 (setq server-process
487 (apply #'make-network-process
488 :name server-name
489 :server t
490 :noquery t
491 :sentinel 'server-sentinel
492 :filter 'server-process-filter
493 ;; We must receive file names without being decoded.
494 ;; Those are decoded by server-process-filter according
495 ;; to file-name-coding-system.
496 :coding 'raw-text
497 ;; The rest of the args depends on the kind of socket used.
498 (if server-use-tcp
499 (list :family nil
500 :service t
501 :host (or server-host 'local)
502 :plist '(:authenticated nil))
503 (list :family 'local
504 :service server-file
505 :plist '(:authenticated t)))))
506 (unless server-process (error "Could not start server process"))
507 (when server-use-tcp
508 (let ((auth-key
509 (loop
510 ;; The auth key is a 64-byte string of random chars in the
511 ;; range `!'..`~'.
512 for i below 64
513 collect (+ 33 (random 94)) into auth
514 finally return (concat auth))))
515 (process-put server-process :auth-key auth-key)
516 (with-temp-file server-file
517 (set-buffer-multibyte nil)
518 (setq buffer-file-coding-system 'no-conversion)
519 (insert (format-network-address
520 (process-contact server-process :local))
521 " " (int-to-string (emacs-pid))
522 "\n" auth-key)))))))))
523
524 (defun server-running-p (&optional name)
525 "Test whether server NAME is running."
526 (interactive
527 (list (if current-prefix-arg
528 (read-string "Server name: " nil nil server-name))))
529 (unless name (setq name server-name))
530 (condition-case nil
531 (progn
532 (delete-process
533 (make-network-process
534 :name "server-client-test" :family 'local :server nil :noquery t
535 :service (expand-file-name name server-socket-dir)))
536 t)
537 (file-error nil)))
538
539 ;;;###autoload
540 (define-minor-mode server-mode
541 "Toggle Server mode.
542 With ARG, turn Server mode on if ARG is positive, off otherwise.
543 Server mode runs a process that accepts commands from the
544 `emacsclient' program. See `server-start' and Info node `Emacs server'."
545 :global t
546 :group 'server
547 :version "22.1"
548 ;; Fixme: Should this check for an existing server socket and do
549 ;; nothing if there is one (for multiple Emacs sessions)?
550 (server-start (not server-mode)))
551 \f
552 (defun server-eval-and-print (expr proc)
553 "Eval EXPR and send the result back to client PROC."
554 (let ((v (eval (car (read-from-string expr)))))
555 (when (and v proc)
556 (with-temp-buffer
557 (let ((standard-output (current-buffer)))
558 (pp v)
559 (let ((text (buffer-substring-no-properties
560 (point-min) (point-max))))
561 (server-send-string
562 proc (format "-print %s\n"
563 (server-quote-arg text)))))))))
564
565 (defun server-create-tty-frame (tty type proc)
566 (add-to-list 'frame-inherited-parameters 'client)
567 (let ((frame
568 (server-with-environment (process-get proc 'env)
569 '("LANG" "LC_CTYPE" "LC_ALL"
570 ;; For tgetent(3); list according to ncurses(3).
571 "BAUDRATE" "COLUMNS" "ESCDELAY" "HOME" "LINES"
572 "NCURSES_ASSUMED_COLORS" "NCURSES_NO_PADDING"
573 "NCURSES_NO_SETBUF" "TERM" "TERMCAP" "TERMINFO"
574 "TERMINFO_DIRS" "TERMPATH"
575 ;; rxvt wants these
576 "COLORFGBG" "COLORTERM")
577 (make-frame-on-tty tty type
578 ;; Ignore nowait here; we always need to
579 ;; clean up opened ttys when the client dies.
580 `((client . ,proc)
581 ;; This is a leftover from an earlier
582 ;; attempt at making it possible for process
583 ;; run in the server process to use the
584 ;; environment of the client process.
585 ;; It has no effect now and to make it work
586 ;; we'd need to decide how to make
587 ;; process-environment interact with client
588 ;; envvars, and then to change the
589 ;; C functions `child_setup' and
590 ;; `getenv_internal' accordingly.
591 (environment . ,(process-get proc 'env)))))))
592
593 ;; ttys don't use the `display' parameter, but callproc.c does to set
594 ;; the DISPLAY environment on subprocesses.
595 (set-frame-parameter frame 'display
596 (getenv-internal "DISPLAY" (process-get proc 'env)))
597 (select-frame frame)
598 (process-put proc 'frame frame)
599 (process-put proc 'terminal (frame-terminal frame))
600
601 ;; Display *scratch* by default.
602 (switch-to-buffer (get-buffer-create "*scratch*") 'norecord)
603
604 ;; Reply with our pid.
605 (server-send-string proc (concat "-emacs-pid "
606 (number-to-string (emacs-pid)) "\n"))
607 frame))
608
609 (defun server-create-window-system-frame (display nowait proc)
610 (add-to-list 'frame-inherited-parameters 'client)
611 (if (not (fboundp 'make-frame-on-display))
612 (progn
613 ;; This emacs does not support X.
614 (server-log "Window system unsupported" proc)
615 (server-send-string proc "-window-system-unsupported \n")
616 nil)
617 ;; Flag frame as client-created, but use a dummy client.
618 ;; This will prevent the frame from being deleted when
619 ;; emacsclient quits while also preventing
620 ;; `server-save-buffers-kill-terminal' from unexpectedly
621 ;; killing emacs on that frame.
622 (let* ((params `((client . ,(if nowait 'nowait proc))
623 ;; This is a leftover, see above.
624 (environment . ,(process-get proc 'env))))
625 (frame (make-frame-on-display
626 (or display
627 (frame-parameter nil 'display)
628 (getenv "DISPLAY")
629 (error "Please specify display"))
630 params)))
631 (server-log (format "%s created" frame) proc)
632 (select-frame frame)
633 (process-put proc 'frame frame)
634 (process-put proc 'terminal (frame-terminal frame))
635
636 ;; Display *scratch* by default.
637 (switch-to-buffer (get-buffer-create "*scratch*") 'norecord)
638 frame)))
639
640
641 (defun server-goto-toplevel (proc)
642 (condition-case nil
643 ;; If we're running isearch, we must abort it to allow Emacs to
644 ;; display the buffer and switch to it.
645 (dolist (buffer (buffer-list))
646 (with-current-buffer buffer
647 (when (bound-and-true-p isearch-mode)
648 (isearch-cancel))))
649 ;; Signaled by isearch-cancel.
650 (quit (message nil)))
651 (when (> (recursion-depth) 0)
652 ;; We're inside a minibuffer already, so if the emacs-client is trying
653 ;; to open a frame on a new display, we might end up with an unusable
654 ;; frame because input from that display will be blocked (until exiting
655 ;; the minibuffer). Better exit this minibuffer right away.
656 ;; Similarly with recursive-edits such as the splash screen.
657 (run-with-timer 0 nil (lexical-let ((proc proc))
658 (lambda () (server-execute-continuation proc))))
659 (top-level)))
660
661 ;; We use various special properties on process objects:
662 ;; - `env' stores the info about the environment of the emacsclient process.
663 ;; - `continuation' is a no-arg function that we need to execute. It contains
664 ;; commands we wanted to execute in some earlier invocation of the process
665 ;; filter but that we somehow were unable to process at that time
666 ;; (e.g. because we first need to throw to the toplevel).
667
668 (defun server-execute-continuation (proc)
669 (let ((continuation (process-get proc 'continuation)))
670 (process-put proc 'continuation nil)
671 (if continuation (ignore-errors (funcall continuation)))))
672
673 (defun* server-process-filter (proc string)
674 "Process a request from the server to edit some files.
675 PROC is the server process. STRING consists of a sequence of
676 commands prefixed by a dash. Some commands have arguments; these
677 are &-quoted and need to be decoded by `server-unquote-arg'. The
678 filter parses and executes these commands.
679
680 To illustrate the protocol, here is an example command that
681 emacsclient sends to create a new X frame (note that the whole
682 sequence is sent on a single line):
683
684 -env HOME /home/lorentey
685 -env DISPLAY :0.0
686 ... lots of other -env commands
687 -display :0.0
688 -window-system
689
690 The following commands are accepted by the server:
691
692 `-auth AUTH-STRING'
693 Authenticate the client using the secret authentication string
694 AUTH-STRING.
695
696 `-env NAME=VALUE'
697 An environment variable on the client side.
698
699 `-dir DIRNAME'
700 The current working directory of the client process.
701
702 `-current-frame'
703 Forbid the creation of new frames.
704
705 `-nowait'
706 Request that the next frame created should not be
707 associated with this client.
708
709 `-display DISPLAY'
710 Set the display name to open X frames on.
711
712 `-position LINE[:COLUMN]'
713 Go to the given line and column number
714 in the next file opened.
715
716 `-file FILENAME'
717 Load the given file in the current frame.
718
719 `-eval EXPR'
720 Evaluate EXPR as a Lisp expression and return the
721 result in -print commands.
722
723 `-window-system'
724 Open a new X frame.
725
726 `-tty DEVICENAME TYPE'
727 Open a new tty frame at the client.
728
729 `-suspend'
730 Suspend this tty frame. The client sends this string in
731 response to SIGTSTP and SIGTTOU. The server must cease all I/O
732 on this tty until it gets a -resume command.
733
734 `-resume'
735 Resume this tty frame. The client sends this string when it
736 gets the SIGCONT signal and it is the foreground process on its
737 controlling tty.
738
739 `-ignore COMMENT'
740 Do nothing, but put the comment in the server
741 log. Useful for debugging.
742
743
744 The following commands are accepted by the client:
745
746 `-emacs-pid PID'
747 Describes the process id of the Emacs process;
748 used to forward window change signals to it.
749
750 `-window-system-unsupported'
751 Signals that the server does not support creating X frames;
752 the client must try again with a tty frame.
753
754 `-print STRING'
755 Print STRING on stdout. Used to send values
756 returned by -eval.
757
758 `-error DESCRIPTION'
759 Signal an error (but continue processing).
760
761 `-suspend'
762 Suspend this terminal, i.e., stop the client process.
763 Sent when the user presses C-z."
764 (server-log (concat "Received " string) proc)
765 ;; First things first: let's check the authentication
766 (unless (process-get proc :authenticated)
767 (if (and (string-match "-auth \\(.*?\\)\n" string)
768 (equal (match-string 1 string) (process-get proc :auth-key)))
769 (progn
770 (setq string (substring string (match-end 0)))
771 (process-put proc :authenticated t)
772 (server-log "Authentication successful" proc))
773 (server-log "Authentication failed" proc)
774 (server-send-string
775 proc (concat "-error " (server-quote-arg "Authentication failed")))
776 (delete-process proc)
777 ;; We return immediately
778 (return-from server-process-filter)))
779 (let ((prev (process-get proc 'previous-string)))
780 (when prev
781 (setq string (concat prev string))
782 (process-put proc 'previous-string nil)))
783 (condition-case err
784 (progn
785 (server-add-client proc)
786 (if (not (string-match "\n" string))
787 ;; Save for later any partial line that remains.
788 (when (> (length string) 0)
789 (process-put proc 'previous-string string))
790
791 ;; In earlier versions of server.el (where we used an `emacsserver'
792 ;; process), there could be multiple lines. Nowadays this is not
793 ;; supported any more.
794 (assert (eq (match-end 0) (length string)))
795 (let ((request (substring string 0 (match-beginning 0)))
796 (coding-system (and default-enable-multibyte-characters
797 (or file-name-coding-system
798 default-file-name-coding-system)))
799 nowait ; t if emacsclient does not want to wait for us.
800 frame ; The frame that was opened for the client (if any).
801 display ; Open the frame on this display.
802 dontkill ; t if the client should not be killed.
803 (commands ())
804 dir
805 (tty-name nil) ;nil, `window-system', or the tty name.
806 tty-type ;string.
807 (files nil)
808 (lineno 1)
809 (columnno 0)
810 command-line-args-left
811 arg)
812 ;; Remove this line from STRING.
813 (setq string (substring string (match-end 0)))
814 (setq command-line-args-left
815 (mapcar 'server-unquote-arg (split-string request " " t)))
816 (while (setq arg (pop command-line-args-left))
817 (cond
818 ;; -version CLIENT-VERSION: obsolete at birth.
819 ((and (equal "-version" arg) command-line-args-left)
820 (pop command-line-args-left))
821
822 ;; -nowait: Emacsclient won't wait for a result.
823 ((equal "-nowait" arg) (setq nowait t))
824
825 ;; -current-frame: Don't create frames.
826 ((equal "-current-frame" arg) (setq tty-name nil))
827
828 ;; -display DISPLAY:
829 ;; Open X frames on the given display instead of the default.
830 ((and (equal "-display" arg) command-line-args-left)
831 (setq display (pop command-line-args-left))
832 (if (zerop (length display)) (setq display nil)))
833
834 ;; -window-system: Open a new X frame.
835 ((equal "-window-system" arg)
836 (setq dontkill t)
837 (setq tty-name 'window-system))
838
839 ;; -resume: Resume a suspended tty frame.
840 ((equal "-resume" arg)
841 (lexical-let ((terminal (process-get proc 'terminal)))
842 (setq dontkill t)
843 (push (lambda ()
844 (when (eq (terminal-live-p terminal) t)
845 (resume-tty terminal)))
846 commands)))
847
848 ;; -suspend: Suspend the client's frame. (In case we
849 ;; get out of sync, and a C-z sends a SIGTSTP to
850 ;; emacsclient.)
851 ((equal "-suspend" arg)
852 (lexical-let ((terminal (process-get proc 'terminal)))
853 (setq dontkill t)
854 (push (lambda ()
855 (when (eq (terminal-live-p terminal) t)
856 (suspend-tty terminal)))
857 commands)))
858
859 ;; -ignore COMMENT: Noop; useful for debugging emacsclient.
860 ;; (The given comment appears in the server log.)
861 ((and (equal "-ignore" arg) command-line-args-left
862 (setq dontkill t)
863 (pop command-line-args-left)))
864
865 ;; -tty DEVICE-NAME TYPE: Open a new tty frame at the client.
866 ((and (equal "-tty" arg)
867 (cdr command-line-args-left))
868 (setq tty-name (pop command-line-args-left)
869 tty-type (pop command-line-args-left)
870 dontkill t))
871
872 ;; -position LINE[:COLUMN]: Set point to the given
873 ;; position in the next file.
874 ((and (equal "-position" arg)
875 command-line-args-left
876 (string-match "\\+\\([0-9]+\\)\\(?::\\([0-9]+\\)\\)?"
877 (car command-line-args-left)))
878 (setq arg (pop command-line-args-left))
879 (setq lineno (string-to-number (match-string 1 arg))
880 columnno (if (null (match-end 2)) 0
881 (string-to-number (match-string 2 arg)))))
882
883 ;; -file FILENAME: Load the given file.
884 ((and (equal "-file" arg)
885 command-line-args-left)
886 (let ((file (pop command-line-args-left)))
887 (if coding-system
888 (setq file (decode-coding-string file coding-system)))
889 (setq file (command-line-normalize-file-name file))
890 (push (list file lineno columnno) files)
891 (server-log (format "New file: %s (%d:%d)"
892 file lineno columnno) proc))
893 (setq lineno 1
894 columnno 0))
895
896 ;; -eval EXPR: Evaluate a Lisp expression.
897 ((and (equal "-eval" arg)
898 command-line-args-left)
899 (lexical-let ((expr (pop command-line-args-left)))
900 (if coding-system
901 (setq expr (decode-coding-string expr coding-system)))
902 (push (lambda () (server-eval-and-print expr proc))
903 commands)
904 (setq lineno 1
905 columnno 0)))
906
907 ;; -env NAME=VALUE: An environment variable.
908 ((and (equal "-env" arg) command-line-args-left)
909 (let ((var (pop command-line-args-left)))
910 ;; XXX Variables should be encoded as in getenv/setenv.
911 (process-put proc 'env
912 (cons var (process-get proc 'env)))))
913
914 ;; -dir DIRNAME: The cwd of the emacsclient process.
915 ((and (equal "-dir" arg) command-line-args-left)
916 (setq dir (pop command-line-args-left))
917 (if coding-system
918 (setq dir (decode-coding-string dir coding-system)))
919 (setq dir (command-line-normalize-file-name dir)))
920
921 ;; Unknown command.
922 (t (error "Unknown command: %s" arg))))
923
924 (setq frame
925 (case tty-name
926 ((nil) (if display (server-select-display display)))
927 ((window-system)
928 (server-create-window-system-frame display nowait proc))
929 (t (server-create-tty-frame tty-name tty-type proc))))
930
931 (process-put proc 'continuation
932 (lexical-let ((proc proc)
933 (files files)
934 (nowait nowait)
935 (commands commands)
936 (dontkill dontkill)
937 (frame frame)
938 (tty-name tty-name))
939 (lambda ()
940 (server-execute proc files nowait commands
941 dontkill frame tty-name))))
942
943 (when (or frame files)
944 (server-goto-toplevel proc))
945
946 (server-execute-continuation proc))))
947 ;; condition-case
948 (error (server-return-error proc err))))
949
950 (defun server-execute (proc files nowait commands dontkill frame tty-name)
951 (condition-case err
952 (let* ((buffers
953 (when files
954 (run-hooks 'pre-command-hook)
955 (prog1 (server-visit-files files proc nowait)
956 (run-hooks 'post-command-hook)))))
957
958 (mapc 'funcall (nreverse commands))
959
960 ;; Delete the client if necessary.
961 (cond
962 (nowait
963 ;; Client requested nowait; return immediately.
964 (server-log "Close nowait client" proc)
965 (server-delete-client proc))
966 ((and (not dontkill) (null buffers))
967 ;; This client is empty; get rid of it immediately.
968 (server-log "Close empty client" proc)
969 (server-delete-client proc)))
970 (cond
971 ((or isearch-mode (minibufferp))
972 nil)
973 ((and frame (null buffers))
974 (message "%s" (substitute-command-keys
975 "When done with this frame, type \\[delete-frame]")))
976 ((not (null buffers))
977 (server-switch-buffer (car buffers))
978 (run-hooks 'server-switch-hook)
979 (unless nowait
980 (message "%s" (substitute-command-keys
981 "When done with a buffer, type \\[server-edit]")))))
982 (when (and frame (null tty-name))
983 (server-unselect-display frame)))
984 (error (server-return-error proc err))))
985
986 (defun server-return-error (proc err)
987 (ignore-errors
988 (server-send-string
989 proc (concat "-error " (server-quote-arg
990 (error-message-string err))))
991 (server-log (error-message-string err) proc)
992 (delete-process proc)))
993
994 (defun server-goto-line-column (file-line-col)
995 "Move point to the position indicated in FILE-LINE-COL.
996 FILE-LINE-COL should be a three-element list as described in
997 `server-visit-files'."
998 (goto-line (nth 1 file-line-col))
999 (let ((column-number (nth 2 file-line-col)))
1000 (when (> column-number 0)
1001 (move-to-column (1- column-number)))))
1002
1003 (defun server-visit-files (files proc &optional nowait)
1004 "Find FILES and return a list of buffers created.
1005 FILES is an alist whose elements are (FILENAME LINENUMBER COLUMNNUMBER).
1006 PROC is the client that requested this operation.
1007 NOWAIT non-nil means this client is not waiting for the results,
1008 so don't mark these buffers specially, just visit them normally."
1009 ;; Bind last-nonmenu-event to force use of keyboard, not mouse, for queries.
1010 (let ((last-nonmenu-event t) client-record)
1011 ;; Restore the current buffer afterward, but not using save-excursion,
1012 ;; because we don't want to save point in this buffer
1013 ;; if it happens to be one of those specified by the server.
1014 (save-current-buffer
1015 (dolist (file files)
1016 ;; If there is an existing buffer modified or the file is
1017 ;; modified, revert it. If there is an existing buffer with
1018 ;; deleted file, offer to write it.
1019 (let* ((minibuffer-auto-raise (or server-raise-frame
1020 minibuffer-auto-raise))
1021 (filen (car file))
1022 (obuf (get-file-buffer filen)))
1023 (add-to-history 'file-name-history filen)
1024 (if (and obuf (set-buffer obuf))
1025 (progn
1026 (cond ((file-exists-p filen)
1027 (when (not (verify-visited-file-modtime obuf))
1028 (revert-buffer t nil)))
1029 (t
1030 (when (y-or-n-p
1031 (concat "File no longer exists: " filen
1032 ", write buffer to file? "))
1033 (write-file filen))))
1034 (unless server-buffer-clients
1035 (setq server-existing-buffer t))
1036 (server-goto-line-column file))
1037 (set-buffer (find-file-noselect filen))
1038 (server-goto-line-column file)
1039 (run-hooks 'server-visit-hook)))
1040 (unless nowait
1041 ;; When the buffer is killed, inform the clients.
1042 (add-hook 'kill-buffer-hook 'server-kill-buffer nil t)
1043 (push proc server-buffer-clients))
1044 (push (current-buffer) client-record)))
1045 (unless nowait
1046 (process-put proc 'buffers
1047 (nconc (process-get proc 'buffers) client-record)))
1048 client-record))
1049 \f
1050 (defun server-buffer-done (buffer &optional for-killing)
1051 "Mark BUFFER as \"done\" for its client(s).
1052 This buries the buffer, then returns a list of the form (NEXT-BUFFER KILLED).
1053 NEXT-BUFFER is another server buffer, as a suggestion for what to select next,
1054 or nil. KILLED is t if we killed BUFFER (typically, because it was visiting
1055 a temp file).
1056 FOR-KILLING if non-nil indicates that we are called from `kill-buffer'."
1057 (let ((next-buffer nil)
1058 (killed nil))
1059 (dolist (proc server-clients)
1060 (let ((buffers (process-get proc 'buffers)))
1061 (or next-buffer
1062 (setq next-buffer (nth 1 (memq buffer buffers))))
1063 (when buffers ; Ignore bufferless clients.
1064 (setq buffers (delq buffer buffers))
1065 ;; Delete all dead buffers from PROC.
1066 (dolist (b buffers)
1067 (and (bufferp b)
1068 (not (buffer-live-p b))
1069 (setq buffers (delq b buffers))))
1070 (process-put proc 'buffers buffers)
1071 ;; If client now has no pending buffers,
1072 ;; tell it that it is done, and forget it entirely.
1073 (unless buffers
1074 (server-log "Close" proc)
1075 (server-delete-client proc)))))
1076 (when (and (bufferp buffer) (buffer-name buffer))
1077 ;; We may or may not kill this buffer;
1078 ;; if we do, do not call server-buffer-done recursively
1079 ;; from kill-buffer-hook.
1080 (let ((server-kill-buffer-running t))
1081 (with-current-buffer buffer
1082 (setq server-buffer-clients nil)
1083 (run-hooks 'server-done-hook))
1084 ;; Notice whether server-done-hook killed the buffer.
1085 (if (null (buffer-name buffer))
1086 (setq killed t)
1087 ;; Don't bother killing or burying the buffer
1088 ;; when we are called from kill-buffer.
1089 (unless for-killing
1090 (when (and (not killed)
1091 server-kill-new-buffers
1092 (with-current-buffer buffer
1093 (not server-existing-buffer)))
1094 (setq killed t)
1095 (bury-buffer buffer)
1096 (kill-buffer buffer))
1097 (unless killed
1098 (if (server-temp-file-p buffer)
1099 (progn
1100 (kill-buffer buffer)
1101 (setq killed t))
1102 (bury-buffer buffer)))))))
1103 (list next-buffer killed)))
1104
1105 (defun server-temp-file-p (&optional buffer)
1106 "Return non-nil if BUFFER contains a file considered temporary.
1107 These are files whose names suggest they are repeatedly
1108 reused to pass information to another program.
1109
1110 The variable `server-temp-file-regexp' controls which filenames
1111 are considered temporary."
1112 (and (buffer-file-name buffer)
1113 (string-match server-temp-file-regexp (buffer-file-name buffer))))
1114
1115 (defun server-done ()
1116 "Offer to save current buffer, mark it as \"done\" for clients.
1117 This kills or buries the buffer, then returns a list
1118 of the form (NEXT-BUFFER KILLED). NEXT-BUFFER is another server buffer,
1119 as a suggestion for what to select next, or nil.
1120 KILLED is t if we killed BUFFER, which happens if it was created
1121 specifically for the clients and did not exist before their request for it."
1122 (when server-buffer-clients
1123 (if (server-temp-file-p)
1124 ;; For a temp file, save, and do make a non-numeric backup
1125 ;; (unless make-backup-files is nil).
1126 (let ((version-control nil)
1127 (buffer-backed-up nil))
1128 (save-buffer))
1129 (when (and (buffer-modified-p)
1130 buffer-file-name
1131 (y-or-n-p (concat "Save file " buffer-file-name "? ")))
1132 (save-buffer)))
1133 (server-buffer-done (current-buffer))))
1134
1135 ;; Ask before killing a server buffer.
1136 ;; It was suggested to release its client instead,
1137 ;; but I think that is dangerous--the client would proceed
1138 ;; using whatever is on disk in that file. -- rms.
1139 (defun server-kill-buffer-query-function ()
1140 "Ask before killing a server buffer."
1141 (or (not server-buffer-clients)
1142 (let ((res t))
1143 (dolist (proc server-buffer-clients res)
1144 (when (and (memq proc server-clients)
1145 (eq (process-status proc) 'open))
1146 (setq res nil))))
1147 (yes-or-no-p (format "Buffer `%s' still has clients; kill it? "
1148 (buffer-name (current-buffer))))))
1149
1150 (defun server-kill-emacs-query-function ()
1151 "Ask before exiting Emacs if it has live clients."
1152 (or (not server-clients)
1153 (let (live-client)
1154 (dolist (proc server-clients live-client)
1155 (when (memq t (mapcar 'buffer-live-p (process-get
1156 proc 'buffers)))
1157 (setq live-client t))))
1158 (yes-or-no-p "This Emacs session has clients; exit anyway? ")))
1159
1160 (defvar server-kill-buffer-running nil
1161 "Non-nil while `server-kill-buffer' or `server-buffer-done' is running.")
1162
1163 (defun server-kill-buffer ()
1164 "Remove the current buffer from its clients' buffer list.
1165 Designed to be added to `kill-buffer-hook'."
1166 ;; Prevent infinite recursion if user has made server-done-hook
1167 ;; call kill-buffer.
1168 (or server-kill-buffer-running
1169 (and server-buffer-clients
1170 (let ((server-kill-buffer-running t))
1171 (when server-process
1172 (server-buffer-done (current-buffer) t))))))
1173 \f
1174 (defun server-edit (&optional arg)
1175 "Switch to next server editing buffer; say \"Done\" for current buffer.
1176 If a server buffer is current, it is marked \"done\" and optionally saved.
1177 The buffer is also killed if it did not exist before the clients asked for it.
1178 When all of a client's buffers are marked as \"done\", the client is notified.
1179
1180 Temporary files such as MH <draft> files are always saved and backed up,
1181 no questions asked. (The variable `make-backup-files', if nil, still
1182 inhibits a backup; you can set it locally in a particular buffer to
1183 prevent a backup for it.) The variable `server-temp-file-regexp' controls
1184 which filenames are considered temporary.
1185
1186 If invoked with a prefix argument, or if there is no server process running,
1187 starts server process and that is all. Invoked by \\[server-edit]."
1188 (interactive "P")
1189 (cond
1190 ((or arg
1191 (not server-process)
1192 (memq (process-status server-process) '(signal exit)))
1193 (server-mode 1))
1194 (server-clients (apply 'server-switch-buffer (server-done)))
1195 (t (message "No server editing buffers exist"))))
1196
1197 (defun server-switch-buffer (&optional next-buffer killed-one)
1198 "Switch to another buffer, preferably one that has a client.
1199 Arg NEXT-BUFFER is a suggestion; if it is a live buffer, use it.
1200
1201 KILLED-ONE is t in a recursive call if we have already killed one
1202 temp-file server buffer. This means we should avoid the final
1203 \"switch to some other buffer\" since we've already effectively
1204 done that."
1205 (if (null next-buffer)
1206 (progn
1207 (let ((rest server-clients))
1208 (while (and rest (not next-buffer))
1209 (let ((proc (car rest)))
1210 ;; Only look at frameless clients.
1211 (when (not (process-get proc 'frame))
1212 (setq next-buffer (car (process-get proc 'buffers))))
1213 (setq rest (cdr rest)))))
1214 (and next-buffer (server-switch-buffer next-buffer killed-one))
1215 (unless (or next-buffer killed-one (window-dedicated-p (selected-window)))
1216 ;; (switch-to-buffer (other-buffer))
1217 (message "No server buffers remain to edit")))
1218 (if (not (buffer-live-p next-buffer))
1219 ;; If NEXT-BUFFER is a dead buffer, remove the server records for it
1220 ;; and try the next surviving server buffer.
1221 (apply 'server-switch-buffer (server-buffer-done next-buffer))
1222 ;; OK, we know next-buffer is live, let's display and select it.
1223 (if (functionp server-window)
1224 (funcall server-window next-buffer)
1225 (let ((win (get-buffer-window next-buffer 0)))
1226 (if (and win (not server-window))
1227 ;; The buffer is already displayed: just reuse the window.
1228 (progn
1229 (select-window win)
1230 (set-buffer next-buffer))
1231 ;; Otherwise, let's find an appropriate window.
1232 (cond ((window-live-p server-window)
1233 (select-window server-window))
1234 ((framep server-window)
1235 (unless (frame-live-p server-window)
1236 (setq server-window (make-frame)))
1237 (select-window (frame-selected-window server-window))))
1238 (when (window-minibuffer-p (selected-window))
1239 (select-window (next-window nil 'nomini 0)))
1240 ;; Move to a non-dedicated window, if we have one.
1241 (when (window-dedicated-p (selected-window))
1242 (select-window
1243 (get-window-with-predicate
1244 (lambda (w)
1245 (and (not (window-dedicated-p w))
1246 (equal (frame-terminal (window-frame w))
1247 (frame-terminal (selected-frame)))))
1248 'nomini 'visible (selected-window))))
1249 (condition-case nil
1250 (switch-to-buffer next-buffer)
1251 ;; After all the above, we might still have ended up with
1252 ;; a minibuffer/dedicated-window (if there's no other).
1253 (error (pop-to-buffer next-buffer)))))))
1254 (when server-raise-frame
1255 (select-frame-set-input-focus (window-frame (selected-window))))))
1256
1257 ;;;###autoload
1258 (defun server-save-buffers-kill-terminal (proc &optional arg)
1259 ;; Called from save-buffers-kill-terminal in files.el.
1260 "Offer to save each buffer, then kill PROC.
1261
1262 With prefix arg, silently save all file-visiting buffers, then kill.
1263
1264 If emacsclient was started with a list of filenames to edit, then
1265 only these files will be asked to be saved."
1266 ;; save-buffers-kill-terminal occasionally calls us with proc set
1267 ;; to `nowait' (comes from the value of the `client' frame parameter).
1268 (when (processp proc)
1269 (let ((buffers (process-get proc 'buffers)))
1270 ;; If client is bufferless, emulate a normal Emacs session
1271 ;; exit and offer to save all buffers. Otherwise, offer to
1272 ;; save only the buffers belonging to the client.
1273 (save-some-buffers arg
1274 (if buffers
1275 (lambda () (memq (current-buffer) buffers))
1276 t))
1277 (server-delete-client proc))))
1278
1279 (define-key ctl-x-map "#" 'server-edit)
1280
1281 (defun server-unload-function ()
1282 "Unload the server library."
1283 (server-mode -1)
1284 (substitute-key-definition 'server-edit nil ctl-x-map)
1285 (save-current-buffer
1286 (dolist (buffer (buffer-list))
1287 (set-buffer buffer)
1288 (remove-hook 'kill-buffer-hook 'server-kill-buffer t)))
1289 ;; continue standard unloading
1290 nil)
1291
1292 \f
1293 (provide 'server)
1294
1295 ;; arch-tag: 1f7ecb42-f00a-49f8-906d-61995d84c8d6
1296 ;;; server.el ends here