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