Rename `struct device' to `struct terminal'. Rename some terminal-related functions...
[bpt/emacs.git] / lisp / server.el
CommitLineData
55535639 1;;; server.el --- Lisp code for GNU Emacs running as server process
c88ab9ce 2
0d30b337
TTN
3;; Copyright (C) 1986, 1987, 1992, 1994, 1995, 1996, 1997, 1998, 1999, 2000,
4;; 2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc.
6d74b528 5
630cc463 6;; Author: William Sommerfeld <wesommer@athena.mit.edu>
e4874521 7;; Maintainer: FSF
d7b4d18f 8;; Keywords: processes
630cc463 9
9ae0f972 10;; Changes by peck@sun.com and by rms.
35dfa9b6 11;; Overhaul by Karoly Lorentey <lorentey@elte.hu> for multi-tty support.
9ae0f972 12
13;; This file is part of GNU Emacs.
14
15;; GNU Emacs is free software; you can redistribute it and/or modify
16;; it under the terms of the GNU General Public License as published by
e5167999 17;; the Free Software Foundation; either version 2, or (at your option)
9ae0f972 18;; any later version.
19
20;; GNU Emacs is distributed in the hope that it will be useful,
21;; but WITHOUT ANY WARRANTY; without even the implied warranty of
22;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
23;; GNU General Public License for more details.
24
25;; You should have received a copy of the GNU General Public License
b578f267 26;; along with GNU Emacs; see the file COPYING. If not, write to the
086add15
LK
27;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
28;; Boston, MA 02110-1301, USA.
9ae0f972 29
630cc463 30;;; Commentary:
9ae0f972 31
b578f267
EN
32;; This Lisp code is run in Emacs when it is to operate as
33;; a server for other processes.
9ae0f972 34
b578f267 35;; Load this library and do M-x server-edit to enable Emacs as a server.
44a56b29
SM
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))
9ae0f972 39
b578f267
EN
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.
9ae0f972 44
6d3a46f7 45;; Note that any number of clients may dispatch files to Emacs to be edited.
9ae0f972 46
b578f267 47;; When you finish editing a Server buffer, again call server-edit
64f51134
JPW
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
b578f267 50;; and exited with server-edit, the client "editor" will return
64f51134 51;; to the program that invoked it.
9ae0f972 52
b578f267
EN
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:
9ae0f972 57
b578f267
EN
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.
9ae0f972 60
b578f267
EN
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.
9ae0f972 63
b578f267
EN
64;; 3. When the program that wants to use "the editor" is running
65;; as a subprocess of Emacs.
9ae0f972 66
b578f267
EN
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.
9ae0f972 72
64f51134
JPW
73;; The buffer local variable "server-buffer-clients" lists
74;; the clients who are waiting for this buffer to be edited.
b578f267
EN
75;; The global variable "server-clients" lists all the waiting clients,
76;; and which files are yet to be edited for each.
630cc463
ER
77
78;;; Code:
8b3e840e
SM
79
80(eval-when-compile (require 'cl))
81
ab1c7f35
RS
82(defgroup server nil
83 "Emacs running as a server process."
84 :group 'external)
85
ab1c7f35 86(defcustom server-visit-hook nil
0c851d78 87 "*Hook run when visiting a file for the Emacs server."
ab1c7f35 88 :group 'server
0c851d78 89 :type 'hook)
ab1c7f35
RS
90
91(defcustom server-switch-hook nil
0c851d78 92 "*Hook run when switching to a buffer for the Emacs server."
ab1c7f35 93 :group 'server
0c851d78 94 :type 'hook)
ab1c7f35
RS
95
96(defcustom server-done-hook nil
0c851d78 97 "*Hook run when done editing a buffer for the Emacs server."
ab1c7f35 98 :group 'server
0c851d78 99 :type 'hook)
f9b3ef88 100
64f51134
JPW
101(defvar server-process nil
102 "The current server process.")
9ae0f972 103
104(defvar server-clients nil
105 "List of current server clients.
9002956f
KL
106Each element is (PROC PROPERTIES...) where PROC is a process object,
107and PROPERTIES is an association list of client properties.")
0a125897 108
9ae0f972 109(defvar server-buffer-clients nil
b5a9911c 110 "List of client ids for clients requesting editing of current buffer.")
faf931a8 111(make-variable-buffer-local 'server-buffer-clients)
9ae0f972 112;; Changing major modes should not erase this local.
113(put 'server-buffer-clients 'permanent-local t)
114
33186f32
DL
115(defcustom server-window nil
116 "*Specification of the window to use for selecting Emacs server buffers.
ec40ed9f 117If nil, use the selected window.
408784a7 118If it is a function, it should take one argument (a buffer) and
33186f32
DL
119display and select it. A common value is `pop-to-buffer'.
120If it is a window, use that.
121If it is a frame, use the frame's selected window.
122
123It is not meaningful to set this to a specific frame or window with Custom.
124Only programs can do so."
125 :group 'server
bf247b6e 126 :version "22.1"
33186f32
DL
127 :type '(choice (const :tag "Use selected window"
128 :match (lambda (widget value)
129 (not (functionp value)))
130 nil)
131 (function-item :tag "Use pop-to-buffer" pop-to-buffer)
132 (function :tag "Other function")))
ec40ed9f 133
ab1c7f35 134(defcustom server-temp-file-regexp "^/tmp/Re\\|/draft$"
33186f32
DL
135 "*Regexp matching names of temporary files.
136These are deleted and reused after each edit by the programs that
137invoke the Emacs server."
ab1c7f35
RS
138 :group 'server
139 :type 'regexp)
9ae0f972 140
c6a117f0
GM
141(defcustom server-kill-new-buffers t
142 "*Whether to kill buffers when done with them.
143If non-nil, kill a buffer unless it already existed before editing
64f51134 144it with Emacs server. If nil, kill only buffers as specified by
c6a117f0
GM
145`server-temp-file-regexp'.
146Please note that only buffers are killed that still have a client,
147i.e. buffers visited which \"emacsclient --no-wait\" are never killed in
148this way."
149 :group 'server
150 :type 'boolean
151 :version "21.1")
152
9ae0f972 153(or (assq 'server-buffer-clients minor-mode-alist)
154 (setq minor-mode-alist (cons '(server-buffer-clients " Server") minor-mode-alist)))
155
c6a117f0 156(defvar server-existing-buffer nil
ca0c7250 157 "Non-nil means the buffer existed before the server was asked to visit it.
4dd04714 158This means that the server should not kill the buffer when you say you
ca0c7250 159are done with it in the server.")
c6a117f0
GM
160(make-variable-buffer-local 'server-existing-buffer)
161
03ae35cf
SM
162(defvar server-name "server")
163
fc0dcdef
KL
164(defvar server-socket-dir nil
165 "The directory in which to place the server socket.
166Initialized by `server-start'.")
0c851d78 167
9002956f
KL
168(defun server-client (proc)
169 "Return the Emacs client corresponding to PROC.
170PROC must be a process object.
171The car of the result is PROC; the cdr is an association list.
172See `server-client-get' and `server-client-set'."
173 (assq proc server-clients))
174
175(defun server-client-get (client property)
176 "Get the value of PROPERTY in CLIENT.
177CLIENT may be a process object, or a client returned by `server-client'.
178Return nil if CLIENT has no such property."
179 (or (listp client) (setq client (server-client client)))
180 (cdr (assq property (cdr client))))
181
182(defun server-client-set (client property value)
183 "Set the PROPERTY to VALUE in CLIENT, and return VALUE.
184CLIENT may be a process object, or a client returned by `server-client'."
185 (let (p proc)
186 (if (listp client)
187 (setq proc (car client))
188 (setq proc client
189 client (server-client client)))
190 (setq p (assq property client))
191 (cond
192 (p (setcdr p value))
193 (client (setcdr client (cons (cons property value) (cdr client))))
194 (t (setq server-clients
195 `((,proc (,property . ,value)) . ,server-clients))))
196 value))
197
198(defun server-clients-with (property value)
199 "Return a list of clients with PROPERTY set to VALUE."
200 (let (result)
201 (dolist (client server-clients result)
202 (when (equal value (server-client-get client property))
203 (setq result (cons (car client) result))))))
204
205(defun server-add-client (proc)
206 "Create a client for process PROC, if it doesn't already have one.
207New clients have no properties."
208 (unless (server-client proc)
209 (setq server-clients (cons (cons proc nil)
210 server-clients))))
211
59e085e0
KL
212(defun server-getenv-from (env variable)
213 "Get the value of VARIABLE in ENV.
214VARIABLE should be a string. Value is nil if VARIABLE is
215undefined in ENV. Otherwise, value is a string.
216
217ENV should be in the same format as `process-environment'."
218 (let (entry result)
219 (while (and env (null result))
220 (setq entry (car env)
221 env (cdr env))
222 (if (and (> (length entry) (length variable))
223 (eq ?= (aref entry (length variable)))
224 (equal variable (substring entry 0 (length variable))))
225 (setq result (substring entry (+ (length variable) 1)))))
226 result))
227
228(defmacro server-with-environment (env vars &rest body)
229 "Evaluate BODY with environment variables VARS set to those in ENV.
65f64034
KL
230The environment variables are then restored to their previous values.
231
59e085e0
KL
232VARS should be a list of strings.
233ENV should be in the same format as `process-environment'."
65f64034
KL
234 (declare (indent 2))
235 (let ((oldvalues (make-symbol "oldvalues"))
236 (var (make-symbol "var"))
237 (value (make-symbol "value"))
238 (pair (make-symbol "pair")))
239 `(let (,oldvalues)
59e085e0
KL
240 (dolist (,var ,vars)
241 (let ((,value (server-getenv-from ,env ,var)))
65f64034
KL
242 (setq ,oldvalues (cons (cons ,var (getenv ,var)) ,oldvalues))
243 (setenv ,var ,value)))
244 (unwind-protect
245 (progn ,@body)
246 (dolist (,pair ,oldvalues)
247 (setenv (car ,pair) (cdr ,pair)))))))
248
de93c791 249(defun server-delete-client (client &optional noframe)
6ed8eeff 250 "Delete CLIENT, including its buffers, terminals and frames.
de93c791
KL
251If NOFRAME is non-nil, let the frames live. (To be used from
252`delete-frame-functions'."
9002956f
KL
253 ;; Force a new lookup of client (prevents infinite recursion).
254 (setq client (server-client
255 (if (listp client) (car client) client)))
256 (let ((proc (car client))
257 (buffers (server-client-get client 'buffers)))
258 (when client
259 (setq server-clients (delq client server-clients))
260
261 (dolist (buf buffers)
6ed9e43a
KL
262 (when (buffer-live-p buf)
263 (with-current-buffer buf
264 ;; Remove PROC from the clients of each buffer.
265 (setq server-buffer-clients (delq proc server-buffer-clients))
266 ;; Kill the buffer if necessary.
267 (when (and (null server-buffer-clients)
268 (or (and server-kill-new-buffers
269 (not server-existing-buffer))
270 (server-temp-file-p)))
271 (kill-buffer (current-buffer))))))
9002956f
KL
272
273 ;; Delete the client's tty.
6ed8eeff
KL
274 (let ((terminal (server-client-get client 'terminal)))
275 (when (eq (terminal-live-p terminal) t)
276 (delete-terminal terminal)))
9002956f
KL
277
278 ;; Delete the client's frames.
de93c791
KL
279 (unless noframe
280 (dolist (frame (frame-list))
281 (if (and (frame-live-p frame)
282 (equal (car client) (frame-parameter frame 'client)))
283 (delete-frame frame))))
9002956f
KL
284
285 ;; Delete the client's process.
286 (if (eq (process-status (car client)) 'open)
287 (delete-process (car client)))
288
289 (server-log "Deleted" proc))))
290
8b3e840e 291(defun server-log (string &optional client)
6d3a46f7
KL
292 "If a *server* buffer exists, write STRING to it for logging purposes.
293If CLIENT is non-nil, add a description of it to the logged
294message."
9ae0f972 295 (if (get-buffer "*server*")
8b3e840e 296 (with-current-buffer "*server*"
9ae0f972 297 (goto-char (point-max))
8b3e840e 298 (insert (current-time-string)
9002956f
KL
299 (cond
300 ((null client) " ")
301 ((listp client) (format " %s: " (car client)))
302 (t (format " %s: " client)))
8b3e840e 303 string)
74c20cd3 304 (or (bolp) (newline)))))
9ae0f972 305
306(defun server-sentinel (proc msg)
9002956f 307 "The process sentinel for Emacs server connections."
cbfc02e4
RF
308 ;; If this is a new client process, set the query-on-exit flag to nil
309 ;; for this process (it isn't inherited from the server process).
310 (when (and (eq (process-status proc) 'open)
311 (process-query-on-exit-flag proc))
312 (set-process-query-on-exit-flag proc nil))
9002956f
KL
313 (server-log (format "Status changed to %s: %s" (process-status proc) msg) proc)
314 (server-delete-client proc))
0c851d78 315
77134727
KL
316(defun server-handle-delete-frame (frame)
317 "Delete the client connection when the emacsclient frame is deleted."
9002956f 318 (let ((proc (frame-parameter frame 'client)))
e519a50b
KL
319 (when (and (frame-live-p frame)
320 proc
b6660415 321 (or (window-system frame)
6d93dbff 322 ;; A terminal device must not yet be deleted if
b6660415
KL
323 ;; there are other frames on it.
324 (< 0 (let ((frame-num 0))
325 (mapc (lambda (f)
6ed8eeff
KL
326 (when (eq (frame-terminal f)
327 (frame-terminal frame))
b6660415
KL
328 (setq frame-num (1+ frame-num))))
329 (frame-list))
330 frame-num))))
9002956f 331 (server-log (format "server-handle-delete-frame, frame %s" frame) proc)
de93c791 332 (server-delete-client proc 'noframe)))) ; Let delete-frame delete the frame later.
9002956f 333
6ed8eeff 334(defun server-handle-suspend-tty (terminal)
9002956f 335 "Notify the emacsclient process to suspend itself when its tty device is suspended."
6ed8eeff
KL
336 (dolist (proc (server-clients-with 'terminal terminal))
337 (server-log (format "server-handle-suspend-tty, terminal %s" terminal) proc)
6d3a46f7 338 (condition-case err
6afdd335 339 (server-send-string proc "-suspend \n")
6d3a46f7 340 (file-error (condition-case nil (server-delete-client proc) (error nil))))))
44a56b29 341
0c851d78 342(defun server-unquote-arg (arg)
6afdd335
KL
343 "Remove &-quotation from ARG.
344See `server-quote-arg' and `server-process-filter'."
0c851d78
SM
345 (replace-regexp-in-string
346 "&." (lambda (s)
347 (case (aref s 1)
348 (?& "&")
349 (?- "-")
350 (?n "\n")
351 (t " ")))
352 arg t t))
9ae0f972 353
0b0d3e0b 354(defun server-quote-arg (arg)
9002956f 355 "In ARG, insert a & before each &, each space, each newline, and -.
0b0d3e0b 356Change spaces to underscores, too, so that the return value never
6afdd335
KL
357contains a space.
358
359See `server-unquote-arg' and `server-process-filter'."
0b0d3e0b
KL
360 (replace-regexp-in-string
361 "[-&\n ]" (lambda (s)
362 (case (aref s 0)
363 (?& "&&")
364 (?- "&-")
365 (?\n "&n")
366 (?\s "&_")))
367 arg t t))
368
6afdd335
KL
369(defun server-send-string (proc string)
370 "A wrapper around `proc-send-string' for logging."
371 (server-log (concat "Sent " string) proc)
372 (process-send-string proc string))
373
724629d2
SM
374(defun server-ensure-safe-dir (dir)
375 "Make sure DIR is a directory with no race-condition issues.
376Creates the directory if necessary and makes sure:
377- there's no symlink involved
378- it's owned by us
379- it's not readable/writable by anybody else."
380 (setq dir (directory-file-name dir))
381 (let ((attrs (file-attributes dir)))
382 (unless attrs
383 (letf (((default-file-modes) ?\700)) (make-directory dir))
384 (setq attrs (file-attributes dir)))
385 ;; Check that it's safe for use.
386 (unless (and (eq t (car attrs)) (eq (nth 2 attrs) (user-uid))
387 (zerop (logand ?\077 (file-modes dir))))
388 (error "The directory %s is unsafe" dir))))
389
7229064d 390;;;###autoload
9ae0f972 391(defun server-start (&optional leave-dead)
392 "Allow this Emacs process to be a server for client processes.
393This starts a server communications subprocess through which
6d3a46f7
KL
394client \"editors\" can send your editing commands to this Emacs
395job. To use the server, set up the program `emacsclient' in the
9ae0f972 396Emacs distribution as your standard \"editor\".
397
6d3a46f7
KL
398Prefix arg LEAVE-DEAD means just kill any existing server
399communications subprocess."
9ae0f972 400 (interactive "P")
d6b4b3cf
KL
401 (when (or
402 (not server-clients)
403 (yes-or-no-p
404 "The current server still has clients; delete them? "))
405 ;; It is safe to get the user id now.
406 (setq server-socket-dir (or server-socket-dir
407 (format "/tmp/emacs%d" (user-uid))))
408 ;; Make sure there is a safe directory in which to place the socket.
409 (server-ensure-safe-dir server-socket-dir)
410 ;; kill it dead!
9ae0f972 411 (if server-process
d6b4b3cf
KL
412 (condition-case () (delete-process server-process) (error nil)))
413 ;; Delete the socket files made by previous server invocations.
414 (condition-case ()
415 (delete-file (expand-file-name server-name server-socket-dir))
416 (error nil))
417 ;; If this Emacs already had a server, clear out associated status.
418 (while server-clients
419 (server-delete-client (car server-clients)))
420 (if leave-dead
421 (progn
422 (server-log (message "Server stopped"))
423 (setq server-process nil))
424 (if server-process
425 (server-log (message "Restarting server"))
426 (server-log (message "Starting server")))
427 (letf (((default-file-modes) ?\700))
d6b4b3cf
KL
428 (add-hook 'suspend-tty-functions 'server-handle-suspend-tty)
429 (add-hook 'delete-frame-functions 'server-handle-delete-frame)
430 (add-hook 'kill-buffer-query-functions 'server-kill-buffer-query-function)
431 (add-hook 'kill-emacs-query-functions 'server-kill-emacs-query-function)
432 (setq server-process
433 (make-network-process
434 :name "server" :family 'local :server t :noquery t
435 :service (expand-file-name server-name server-socket-dir)
436 :sentinel 'server-sentinel :filter 'server-process-filter
437 ;; We must receive file names without being decoded.
438 ;; Those are decoded by server-process-filter according
439 ;; to file-name-coding-system.
440 :coding 'raw-text))))))
33186f32
DL
441
442;;;###autoload
443(define-minor-mode server-mode
444 "Toggle Server mode.
445With ARG, turn Server mode on if ARG is positive, off otherwise.
446Server mode runs a process that accepts commands from the
447`emacsclient' program. See `server-start' and Info node `Emacs server'."
448 :global t
449 :group 'server
bf247b6e 450 :version "22.1"
33186f32
DL
451 ;; Fixme: Should this check for an existing server socket and do
452 ;; nothing if there is one (for multiple Emacs sessions)?
453 (server-start (not server-mode)))
9ae0f972 454\f
9ae0f972 455(defun server-process-filter (proc string)
33186f32 456 "Process a request from the server to edit some files.
6afdd335
KL
457PROC is the server process. STRING consists of a sequence of
458commands prefixed by a dash. Some commands have arguments; these
459are &-quoted and need to be decoded by `server-unquote-arg'. The
460filter parses and executes these commands.
461
462To illustrate the protocol, here is an example command that
463emacsclient sends to create a new X frame (note that the whole
464sequence is sent on a single line):
465
466 -version 21.3.50 xterm
467 -env HOME /home/lorentey
468 -env DISPLAY :0.0
469 ... lots of other -env commands
470 -display :0.0
471 -window-system
472
473The server normally sends back the single command `-good-version'
474as a response.
475
476The following commands are accepted by the server:
477
478`-version CLIENT-VERSION'
479 Check version numbers between server and client, and signal an
480 error if there is a mismatch. The server replies with
481 `-good-version' to confirm the match.
482
59e085e0 483`-env NAME=VALUE'
6afdd335
KL
484 An environment variable on the client side.
485
92071250
KL
486`-current-frame'
487 Forbid the creation of new frames.
488
6afdd335
KL
489`-nowait'
490 Request that the next frame created should not be
491 associated with this client.
492
493`-display DISPLAY'
494 Set the display name to open X frames on.
495
496`-position LINE[:COLUMN]'
497 Go to the given line and column number
498 in the next file opened.
499
500`-file FILENAME'
501 Load the given file in the current frame.
502
503`-eval EXPR'
504 Evaluate EXPR as a Lisp expression and return the
505 result in -print commands.
506
507`-window-system'
508 Open a new X frame.
509
510`-tty DEVICENAME TYPE'
511 Open a new tty frame at the client.
512
513`-resume'
514 Resume this tty frame. The client sends this string when it
515 gets the SIGCONT signal and it is the foreground process on its
516 controlling tty.
517
518`-suspend'
519 Suspend this tty frame. The client sends this string in
520 response to SIGTSTP and SIGTTOU. The server must cease all I/O
521 on this tty until it gets a -resume command.
522
523`-ignore COMMENT'
524 Do nothing, but put the comment in the server
525 log. Useful for debugging.
526
527
528The following commands are accepted by the client:
529
530`-good-version'
531 Signals a version match between the client and the server.
532
533`-emacs-pid PID'
534 Describes the process id of the Emacs process;
535 used to forward window change signals to it.
536
537`-window-system-unsupported'
538 Signals that the server does not
539 support creating X frames; the client must try again with a tty
540 frame.
541
542`-print STRING'
543 Print STRING on stdout. Used to send values
544 returned by -eval.
545
546`-error DESCRIPTION'
547 Signal an error (but continue processing).
548
549`-suspend'
550 Suspend this terminal, i.e., stop the client process. Sent
551 when the user presses C-z."
552 (server-log (concat "Received " string) proc)
3f7ef08e
SM
553 (let ((prev (process-get proc 'previous-string)))
554 (when prev
555 (setq string (concat prev string))
556 (process-put proc 'previous-string nil)))
a9298135 557 (condition-case err
0b0d3e0b 558 (progn
9002956f 559 (server-add-client proc)
0b0d3e0b
KL
560 ;; If the input is multiple lines,
561 ;; process each line individually.
562 (while (string-match "\n" string)
563 (let ((request (substring string 0 (match-beginning 0)))
564 (coding-system (and default-enable-multibyte-characters
565 (or file-name-coding-system
566 default-file-name-coding-system)))
9002956f 567 (client (server-client proc))
92071250 568 current-frame
9002956f
KL
569 nowait ; t if emacsclient does not want to wait for us.
570 frame ; The frame that was opened for the client (if any).
59e085e0 571 display ; Open the frame on this display.
0b0d3e0b 572 dontkill ; t if the client should not be killed.
59e085e0 573 env
0b0d3e0b
KL
574 (files nil)
575 (lineno 1)
576 (columnno 0))
577 ;; Remove this line from STRING.
578 (setq string (substring string (match-end 0)))
9002956f 579 (while (string-match " *[^ ]* " request)
0b0d3e0b
KL
580 (let ((arg (substring request (match-beginning 0) (1- (match-end 0)))))
581 (setq request (substring request (match-end 0)))
582 (cond
9002956f
KL
583 ;; -version CLIENT-VERSION:
584 ;; Check version numbers, signal an error if there is a mismatch.
585 ((and (equal "-version" arg)
586 (string-match "\\([0-9.]+\\) " request))
0b0d3e0b 587 (let* ((client-version (match-string 1 request))
9002956f
KL
588 (truncated-emacs-version
589 (substring emacs-version 0 (length client-version))))
0b0d3e0b
KL
590 (setq request (substring request (match-end 0)))
591 (if (equal client-version truncated-emacs-version)
592 (progn
6afdd335 593 (server-send-string proc "-good-version \n")
9002956f
KL
594 (server-client-set client 'version client-version))
595 (error (concat "Version mismatch: Emacs is "
596 truncated-emacs-version
597 ", emacsclient is " client-version)))))
0b0d3e0b 598
9002956f 599 ;; -nowait: Emacsclient won't wait for a result.
0b0d3e0b
KL
600 ((equal "-nowait" arg) (setq nowait t))
601
92071250
KL
602 ;; -current-frame: Don't create frames.
603 ((equal "-current-frame" arg) (setq current-frame t))
604
9002956f 605 ;; -display DISPLAY:
59e085e0 606 ;; Open X frames on the given display instead of the default.
0b0d3e0b
KL
607 ((and (equal "-display" arg) (string-match "\\([^ ]*\\) " request))
608 (setq display (match-string 1 request)
609 request (substring request (match-end 0))))
610
9002956f 611 ;; -window-system: Open a new X frame.
0b0d3e0b 612 ((equal "-window-system" arg)
9002956f 613 (unless (server-client-get client 'version)
a9298135 614 (error "Protocol error; make sure to use the correct version of emacsclient"))
92071250
KL
615 (unless current-frame
616 (if (fboundp 'x-create-frame)
617 (let ((params (if nowait
62c5106c
KL
618 ;; Flag frame as client-created, but use a dummy client.
619 ;; This will prevent the frame from being deleted when
620 ;; emacsclient quits while also preventing
6ed8eeff 621 ;; `server-save-buffers-kill-terminal' from unexpectedly
62c5106c 622 ;; killing emacs on that frame.
da8e8fc1
KL
623 (list (cons 'client 'nowait) (cons 'environment env))
624 (list (cons 'client proc) (cons 'environment env)))))
92071250
KL
625 (setq frame (make-frame-on-display
626 (or display
f105f403 627 (frame-parameter nil 'display)
92071250
KL
628 (getenv "DISPLAY")
629 (error "Please specify display"))
630 params))
631 (server-log (format "%s created" frame) proc)
632 ;; XXX We need to ensure the parameters are
633 ;; really set because Emacs forgets unhandled
634 ;; initialization parameters for X frames at
635 ;; the moment.
636 (modify-frame-parameters frame params)
637 (select-frame frame)
638 (server-client-set client 'frame frame)
6ed8eeff 639 (server-client-set client 'terminal (frame-terminal frame))
92071250
KL
640 (setq dontkill t))
641 ;; This emacs does not support X.
642 (server-log "Window system unsupported" proc)
643 (server-send-string proc "-window-system-unsupported \n")
644 (setq dontkill t))))
9002956f
KL
645
646 ;; -resume: Resume a suspended tty frame.
0b0d3e0b 647 ((equal "-resume" arg)
6ed8eeff 648 (let ((terminal (server-client-get client 'terminal)))
0b0d3e0b 649 (setq dontkill t)
6ed8eeff
KL
650 (when (eq (terminal-live-p terminal) t)
651 (resume-tty terminal))))
0b0d3e0b 652
9002956f
KL
653 ;; -suspend: Suspend the client's frame. (In case we
654 ;; get out of sync, and a C-z sends a SIGTSTP to
655 ;; emacsclient.)
0b0d3e0b 656 ((equal "-suspend" arg)
6ed8eeff 657 (let ((terminal (server-client-get client 'terminal)))
0b0d3e0b 658 (setq dontkill t)
6ed8eeff
KL
659 (when (eq (terminal-live-p terminal) t)
660 (suspend-tty terminal))))
0b0d3e0b 661
9002956f
KL
662 ;; -ignore COMMENT: Noop; useful for debugging emacsclient.
663 ;; (The given comment appears in the server log.)
0b0d3e0b
KL
664 ((and (equal "-ignore" arg) (string-match "\\([^ ]*\\) " request))
665 (setq dontkill t
666 request (substring request (match-end 0))))
667
9002956f 668 ;; -tty DEVICE-NAME TYPE: Open a new tty frame at the client.
0b0d3e0b
KL
669 ((and (equal "-tty" arg) (string-match "\\([^ ]*\\) \\([^ ]*\\) " request))
670 (let ((tty (server-unquote-arg (match-string 1 request)))
671 (type (server-unquote-arg (match-string 2 request))))
672 (setq request (substring request (match-end 0)))
9002956f
KL
673 (unless (server-client-get client 'version)
674 (error "Protocol error; make sure you use the correct version of emacsclient"))
92071250 675 (unless current-frame
59e085e0
KL
676 (server-with-environment env
677 '("LANG" "LC_CTYPE" "LC_ALL"
678 ;; For tgetent(3); list according to ncurses(3).
679 "BAUDRATE" "COLUMNS" "ESCDELAY" "HOME" "LINES"
680 "NCURSES_ASSUMED_COLORS" "NCURSES_NO_PADDING"
681 "NCURSES_NO_SETBUF" "TERM" "TERMCAP" "TERMINFO"
682 "TERMINFO_DIRS" "TERMPATH")
92071250
KL
683 (setq frame (make-frame-on-tty tty type
684 ;; Ignore nowait here; we always need to clean
685 ;; up opened ttys when the client dies.
da8e8fc1
KL
686 `((client . ,proc)
687 (environment . ,env)))))
92071250
KL
688 (select-frame frame)
689 (server-client-set client 'frame frame)
6ed8eeff
KL
690 (server-client-set client 'tty (terminal-name frame))
691 (server-client-set client 'terminal (frame-terminal frame))
92071250
KL
692
693 ;; Reply with our pid.
694 (server-send-string proc (concat "-emacs-pid " (number-to-string (emacs-pid)) "\n"))
695 (setq dontkill t))))
9002956f
KL
696
697 ;; -position LINE: Go to the given line in the next file.
0b0d3e0b 698 ((and (equal "-position" arg) (string-match "\\(\\+[0-9]+\\) " request))
80a426c2
KL
699 (setq lineno (string-to-number (substring (match-string 1 request) 1))
700 request (substring request (match-end 0))))
0b0d3e0b 701
9002956f 702 ;; -position LINE:COLUMN: Set point to the given position in the next file.
0b0d3e0b 703 ((and (equal "-position" arg) (string-match "\\+\\([0-9]+\\):\\([0-9]+\\) " request))
b4bb3cbc
KL
704 (setq lineno (string-to-number (match-string 1 request))
705 columnno (string-to-number (match-string 2 request))
4e15f072 706 request (substring request (match-end 0))))
0b0d3e0b 707
9002956f 708 ;; -file FILENAME: Load the given file.
0b0d3e0b
KL
709 ((and (equal "-file" arg) (string-match "\\([^ ]+\\) " request))
710 (let ((file (server-unquote-arg (match-string 1 request))))
711 (setq request (substring request (match-end 0)))
712 (if coding-system
713 (setq file (decode-coding-string file coding-system)))
714 (setq file (command-line-normalize-file-name file))
80a426c2
KL
715 (push (list file lineno columnno) files)
716 (server-log (format "New file: %s (%d:%d)" file lineno columnno) proc))
0b0d3e0b
KL
717 (setq lineno 1
718 columnno 0))
719
9002956f 720 ;; -eval EXPR: Evaluate a Lisp expression.
0b0d3e0b
KL
721 ((and (equal "-eval" arg) (string-match "\\([^ ]+\\) " request))
722 (let ((expr (server-unquote-arg (match-string 1 request))))
723 (setq request (substring request (match-end 0)))
724 (if coding-system
725 (setq expr (decode-coding-string expr coding-system)))
726 (let ((v (eval (car (read-from-string expr)))))
9002956f 727 (when (and (not frame) v)
a9298135
KL
728 (with-temp-buffer
729 (let ((standard-output (current-buffer)))
730 (pp v)
6afdd335
KL
731 (server-send-string
732 proc (format "-print %s\n"
733 (server-quote-arg
734 (buffer-substring-no-properties (point-min)
735 (point-max)))))))))
0b0d3e0b
KL
736 (setq lineno 1
737 columnno 0)))
738
59e085e0
KL
739 ;; -env NAME=VALUE: An environment variable.
740 ((and (equal "-env" arg) (string-match "\\([^ ]+\\) " request))
741 (let ((var (server-unquote-arg (match-string 1 request))))
da8e8fc1 742 ;; XXX Variables should be encoded as in getenv/setenv.
9002956f 743 (setq request (substring request (match-end 0)))
59e085e0 744 (setq env (cons var env))))
9002956f 745
0b0d3e0b
KL
746 ;; Unknown command.
747 (t (error "Unknown command: %s" arg)))))
748
c5b0a355
KL
749 (let (buffers)
750 (when files
751 (run-hooks 'pre-command-hook)
752 (setq buffers (server-visit-files files client nowait))
753 (run-hooks 'post-command-hook))
754
755 ;; Delete the client if necessary.
756 (cond
757 (nowait
758 ;; Client requested nowait; return immediately.
759 (server-log "Close nowait client" proc)
760 (server-delete-client proc))
761 ((and (not dontkill) (null buffers))
762 ;; This client is empty; get rid of it immediately.
763 (server-log "Close empty client" proc)
764 (server-delete-client proc)))
765 (cond
766 ((or isearch-mode (minibufferp))
767 nil)
768 ((and frame (null buffers))
0ff21b4e
KL
769 (message "%s" (substitute-command-keys
770 "When done with this frame, type \\[delete-frame]")))
c5b0a355
KL
771 ((not (null buffers))
772 (server-switch-buffer (car buffers))
773 (run-hooks 'server-switch-hook)
774 (unless nowait
0ff21b4e
KL
775 (message "%s" (substitute-command-keys
776 "When done with a buffer, type \\[server-edit]"))))))))
0b0d3e0b 777
a9298135
KL
778 ;; Save for later any partial line that remains.
779 (when (> (length string) 0)
780 (process-put proc 'previous-string string)))
781 ;; condition-case
782 (error (ignore-errors
6afdd335 783 (server-send-string
0b0d3e0b 784 proc (concat "-error " (server-quote-arg (error-message-string err))))
a9298135
KL
785 (setq string "")
786 (server-log (error-message-string err) proc)
787 (delete-process proc)))))
9ae0f972 788
6b98185f 789(defun server-goto-line-column (file-line-col)
6d3a46f7
KL
790 "Move point to the position indicated in FILE-LINE-COL.
791FILE-LINE-COL should be a three-element list as described in
792`server-visit-files'."
6b98185f
RS
793 (goto-line (nth 1 file-line-col))
794 (let ((column-number (nth 2 file-line-col)))
795 (if (> column-number 0)
796 (move-to-column (1- column-number)))))
797
dfa35e6b 798(defun server-visit-files (files client &optional nowait)
c5b0a355 799 "Find FILES and return a list of buffers created.
8c493570 800FILES is an alist whose elements are (FILENAME LINENUMBER COLUMNNUMBER).
6d3a46f7 801CLIENT is the client that requested this operation.
dfa35e6b
RS
802NOWAIT non-nil means this client is not waiting for the results,
803so don't mark these buffers specially, just visit them normally."
e82e73c2 804 ;; Bind last-nonmenu-event to force use of keyboard, not mouse, for queries.
44a56b29 805 (let ((last-nonmenu-event t) client-record)
3a0ce849
RS
806 ;; Restore the current buffer afterward, but not using save-excursion,
807 ;; because we don't want to save point in this buffer
808 ;; if it happens to be one of those specified by the server.
44a56b29
SM
809 (save-current-buffer
810 (dolist (file files)
811 ;; If there is an existing buffer modified or the file is
812 ;; modified, revert it. If there is an existing buffer with
813 ;; deleted file, offer to write it.
814 (let* ((filen (car file))
815 (obuf (get-file-buffer filen)))
816 (push filen file-name-history)
817 (if (and obuf (set-buffer obuf))
818 (progn
819 (cond ((file-exists-p filen)
820 (if (not (verify-visited-file-modtime obuf))
821 (revert-buffer t nil)))
822 (t
823 (if (y-or-n-p
9002956f 824 (concat "File no longer exists: " filen
44a56b29
SM
825 ", write buffer to file? "))
826 (write-file filen))))
827 (setq server-existing-buffer t)
828 (server-goto-line-column file))
829 (set-buffer (find-file-noselect filen))
830 (server-goto-line-column file)
831 (run-hooks 'server-visit-hook)))
832 (unless nowait
833 ;; When the buffer is killed, inform the clients.
834 (add-hook 'kill-buffer-hook 'server-kill-buffer nil t)
c5b0a355
KL
835 (push (car client) server-buffer-clients))
836 (push (current-buffer) client-record)))
837 (unless nowait
838 (server-client-set
839 client 'buffers
840 (nconc (server-client-get client 'buffers) client-record)))
841 client-record))
9ae0f972 842\f
b392bac9 843(defun server-buffer-done (buffer &optional for-killing)
9ae0f972 844 "Mark BUFFER as \"done\" for its client(s).
9184aafb
RS
845This buries the buffer, then returns a list of the form (NEXT-BUFFER KILLED).
846NEXT-BUFFER is another server buffer, as a suggestion for what to select next,
8b3e840e
SM
847or nil. KILLED is t if we killed BUFFER (typically, because it was visiting
848a temp file).
849FOR-KILLING if non-nil indicates that we are called from `kill-buffer'."
0c851d78 850 (let ((next-buffer nil)
9002956f
KL
851 (killed nil))
852 (dolist (client server-clients)
853 (let ((buffers (server-client-get client 'buffers)))
8b3e840e 854 (or next-buffer
9002956f
KL
855 (setq next-buffer (nth 1 (memq buffer buffers))))
856 (when buffers ; Ignore bufferless clients.
857 (setq buffers (delq buffer buffers))
858 ;; Delete all dead buffers from CLIENT.
859 (dolist (b buffers)
860 (and (bufferp b)
861 (not (buffer-live-p b))
862 (setq buffers (delq b buffers))))
863 (server-client-set client 'buffers buffers)
864 ;; If client now has no pending buffers,
865 ;; tell it that it is done, and forget it entirely.
866 (unless buffers
867 (server-log "Close" client)
868 (server-delete-client client)))))
68469f74 869 (if (and (bufferp buffer) (buffer-name buffer))
599f9a5c
RS
870 ;; We may or may not kill this buffer;
871 ;; if we do, do not call server-buffer-done recursively
872 ;; from kill-buffer-hook.
873 (let ((server-kill-buffer-running t))
408784a7 874 (with-current-buffer buffer
f9b3ef88
RS
875 (setq server-buffer-clients nil)
876 (run-hooks 'server-done-hook))
599f9a5c
RS
877 ;; Notice whether server-done-hook killed the buffer.
878 (if (null (buffer-name buffer))
879 (setq killed t)
880 ;; Don't bother killing or burying the buffer
881 ;; when we are called from kill-buffer.
882 (unless for-killing
c6a117f0
GM
883 (when (and (not killed)
884 server-kill-new-buffers
4dd04714
RS
885 (with-current-buffer buffer
886 (not server-existing-buffer)))
c6a117f0 887 (setq killed t)
3d2a0e0b 888 (bury-buffer buffer)
c6a117f0
GM
889 (kill-buffer buffer))
890 (unless killed
891 (if (server-temp-file-p buffer)
892 (progn
893 (kill-buffer buffer)
894 (setq killed t))
895 (bury-buffer buffer)))))))
9184aafb 896 (list next-buffer killed)))
9ae0f972 897
408784a7 898(defun server-temp-file-p (&optional buffer)
9ae0f972 899 "Return non-nil if BUFFER contains a file considered temporary.
900These are files whose names suggest they are repeatedly
901reused to pass information to another program.
902
903The variable `server-temp-file-regexp' controls which filenames
904are considered temporary."
905 (and (buffer-file-name buffer)
906 (string-match server-temp-file-regexp (buffer-file-name buffer))))
907
908(defun server-done ()
cc9875f9 909 "Offer to save current buffer, mark it as \"done\" for clients.
ed9ae328
RS
910This kills or buries the buffer, then returns a list
911of the form (NEXT-BUFFER KILLED). NEXT-BUFFER is another server buffer,
912as a suggestion for what to select next, or nil.
913KILLED is t if we killed BUFFER, which happens if it was created
914specifically for the clients and did not exist before their request for it."
408784a7
SM
915 (when server-buffer-clients
916 (if (server-temp-file-p)
917 ;; For a temp file, save, and do make a non-numeric backup
918 ;; (unless make-backup-files is nil).
919 (let ((version-control nil)
920 (buffer-backed-up nil))
921 (save-buffer))
922 (if (and (buffer-modified-p)
923 buffer-file-name
924 (y-or-n-p (concat "Save file " buffer-file-name "? ")))
925 (save-buffer)))
926 (server-buffer-done (current-buffer))))
faf931a8 927
71207de2
RS
928;; Ask before killing a server buffer.
929;; It was suggested to release its client instead,
930;; but I think that is dangerous--the client would proceed
931;; using whatever is on disk in that file. -- rms.
03d78665 932(defun server-kill-buffer-query-function ()
9002956f 933 "Ask before killing a server buffer."
03d78665 934 (or (not server-buffer-clients)
114a8b8c
KL
935 (let ((res t))
936 (dolist (proc server-buffer-clients res)
9002956f
KL
937 (let ((client (server-client proc)))
938 (when (and client (eq (process-status proc) 'open))
939 (setq res nil)))))
03d78665
RS
940 (yes-or-no-p (format "Buffer `%s' still has clients; kill it? "
941 (buffer-name (current-buffer))))))
942
03d78665 943(defun server-kill-emacs-query-function ()
7540c1e0 944 "Ask before exiting Emacs it has live clients."
9002956f
KL
945 (or (not server-clients)
946 (let (live-client)
947 (dolist (client server-clients live-client)
948 (if (memq t (mapcar 'buffer-live-p (server-client-get
949 client 'buffers)))
950 (setq live-client t))))
951 (yes-or-no-p "This Emacs session has clients; exit anyway? ")))
b392bac9 952
fb873cfc 953(defvar server-kill-buffer-running nil
599f9a5c 954 "Non-nil while `server-kill-buffer' or `server-buffer-done' is running.")
fb873cfc 955
b392bac9 956(defun server-kill-buffer ()
6d3a46f7
KL
957 "Remove the current buffer from its clients' buffer list.
958Designed to be added to `kill-buffer-hook'."
fb873cfc
RS
959 ;; Prevent infinite recursion if user has made server-done-hook
960 ;; call kill-buffer.
961 (or server-kill-buffer-running
599f9a5c
RS
962 (and server-buffer-clients
963 (let ((server-kill-buffer-running t))
964 (when server-process
965 (server-buffer-done (current-buffer) t))))))
9ae0f972 966\f
967(defun server-edit (&optional arg)
968 "Switch to next server editing buffer; say \"Done\" for current buffer.
969If a server buffer is current, it is marked \"done\" and optionally saved.
ed9ae328 970The buffer is also killed if it did not exist before the clients asked for it.
9ae0f972 971When all of a client's buffers are marked as \"done\", the client is notified.
972
973Temporary files such as MH <draft> files are always saved and backed up,
991298c3
RS
974no questions asked. (The variable `make-backup-files', if nil, still
975inhibits a backup; you can set it locally in a particular buffer to
976prevent a backup for it.) The variable `server-temp-file-regexp' controls
9ae0f972 977which filenames are considered temporary.
978
64f51134 979If invoked with a prefix argument, or if there is no server process running,
9ae0f972 980starts server process and that is all. Invoked by \\[server-edit]."
9ae0f972 981 (interactive "P")
982 (if (or arg
983 (not server-process)
984 (memq (process-status server-process) '(signal exit)))
985 (server-start nil)
9184aafb 986 (apply 'server-switch-buffer (server-done))))
9ae0f972 987
98a4349c 988(defun server-switch-buffer (&optional next-buffer killed-one)
9ae0f972 989 "Switch to another buffer, preferably one that has a client.
6d3a46f7
KL
990Arg NEXT-BUFFER is a suggestion; if it is a live buffer, use it.
991
992KILLED-ONE is t in a recursive call if we have already killed one
993temp-file server buffer. This means we should avoid the final
994\"switch to some other buffer\" since we've already effectively
995done that."
ca0c7250 996 (if (null next-buffer)
9002956f
KL
997 (progn
998 (let ((rest server-clients))
999 (while (and rest (not next-buffer))
1000 (let ((client (car rest)))
1001 ;; Only look at frameless clients.
1002 (when (not (server-client-get client 'frame))
1003 (setq next-buffer (car (server-client-get client 'buffers))))
1004 (setq rest (cdr rest)))))
1005 (and next-buffer (server-switch-buffer next-buffer killed-one))
1006 (unless (or next-buffer killed-one (window-dedicated-p (selected-window)))
1007 ;; (switch-to-buffer (other-buffer))
90ee5627 1008 (message "No server buffers remain to edit")))
9002956f 1009 (if (not (buffer-live-p next-buffer))
ca0c7250 1010 ;; If NEXT-BUFFER is a dead buffer, remove the server records for it
9ae0f972 1011 ;; and try the next surviving server buffer.
ca0c7250
SM
1012 (apply 'server-switch-buffer (server-buffer-done next-buffer))
1013 ;; OK, we know next-buffer is live, let's display and select it.
408784a7
SM
1014 (if (functionp server-window)
1015 (funcall server-window next-buffer)
1016 (let ((win (get-buffer-window next-buffer 0)))
1017 (if (and win (not server-window))
1018 ;; The buffer is already displayed: just reuse the window.
1019 (let ((frame (window-frame win)))
1020 (if (eq (frame-visible-p frame) 'icon)
1021 (raise-frame frame))
1022 (select-window win)
1023 (set-buffer next-buffer))
1024 ;; Otherwise, let's find an appropriate window.
1025 (cond ((and (windowp server-window)
1026 (window-live-p server-window))
1027 (select-window server-window))
1028 ((framep server-window)
1029 (if (not (frame-live-p server-window))
1030 (setq server-window (make-frame)))
1031 (select-window (frame-selected-window server-window))))
1032 (if (window-minibuffer-p (selected-window))
1033 (select-window (next-window nil 'nomini 0)))
1034 ;; Move to a non-dedicated window, if we have one.
1035 (when (window-dedicated-p (selected-window))
1036 (select-window
1037 (get-window-with-predicate
1038 (lambda (w)
1039 (and (not (window-dedicated-p w))
6ed8eeff
KL
1040 (equal (frame-terminal (window-frame w))
1041 (frame-terminal (selected-frame)))))
408784a7
SM
1042 'nomini 'visible (selected-window))))
1043 (condition-case nil
1044 (switch-to-buffer next-buffer)
1045 ;; After all the above, we might still have ended up with
1046 ;; a minibuffer/dedicated-window (if there's no other).
1047 (error (pop-to-buffer next-buffer)))))))))
9ae0f972 1048
59e085e0 1049;;;###autoload
6ed8eeff 1050(defun server-save-buffers-kill-terminal (proc &optional arg)
59e085e0 1051 "Offer to save each buffer, then kill PROC.
b4ca0271 1052
7540c1e0
KL
1053With prefix arg, silently save all file-visiting buffers, then kill.
1054
1055If emacsclient was started with a list of filenames to edit, then
1056only these files will be asked to be saved."
59e085e0
KL
1057 (let ((buffers (server-client-get proc 'buffers)))
1058 ;; If client is bufferless, emulate a normal Emacs session
1059 ;; exit and offer to save all buffers. Otherwise, offer to
1060 ;; save only the buffers belonging to the client.
1061 (save-some-buffers arg
1062 (if buffers
1063 (lambda () (memq (current-buffer) buffers))
1064 t))
1065 (server-delete-client proc)))
b4ca0271 1066
772c5eb7 1067(define-key ctl-x-map "#" 'server-edit)
df4e8a11
DL
1068
1069(defun server-unload-hook ()
6d3a46f7 1070 "Unload the server library."
33186f32 1071 (server-start t)
9002956f
KL
1072 (remove-hook 'suspend-tty-functions 'server-handle-suspend-tty)
1073 (remove-hook 'delete-frame-functions 'server-handle-delete-frame)
df4e8a11
DL
1074 (remove-hook 'kill-buffer-query-functions 'server-kill-buffer-query-function)
1075 (remove-hook 'kill-emacs-query-functions 'server-kill-emacs-query-function)
1076 (remove-hook 'kill-buffer-hook 'server-kill-buffer))
3bb38bc2
RS
1077
1078(add-hook 'server-unload-hook 'server-unload-hook)
16c15321
RM
1079\f
1080(provide 'server)
c88ab9ce 1081
ab5796a9 1082;;; arch-tag: 1f7ecb42-f00a-49f8-906d-61995d84c8d6
c88ab9ce 1083;;; server.el ends here