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