]> code.delx.au - gnu-emacs/blob - lisp/server.el
(server-socket-name): Use new safe location for socket.
[gnu-emacs] / lisp / server.el
1 ;;; server.el --- Lisp code for GNU Emacs running as server process
2
3 ;; Copyright (C) 1986,87,92,94,95,96,97,98,99,2000,01,02,2003
4 ;; Free Software Foundation, Inc.
5
6 ;; Author: William Sommerfeld <wesommer@athena.mit.edu>
7 ;; Maintainer: FSF
8 ;; Keywords: processes
9
10 ;; Changes by peck@sun.com and by rms.
11
12 ;; This file is part of GNU Emacs.
13
14 ;; GNU Emacs is free software; you can redistribute it and/or modify
15 ;; it under the terms of the GNU General Public License as published by
16 ;; the Free Software Foundation; either version 2, or (at your option)
17 ;; any later version.
18
19 ;; GNU Emacs is distributed in the hope that it will be useful,
20 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
21 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22 ;; GNU General Public License for more details.
23
24 ;; You should have received a copy of the GNU General Public License
25 ;; along with GNU Emacs; see the file COPYING. If not, write to the
26 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
27 ;; Boston, MA 02111-1307, USA.
28
29 ;;; Commentary:
30
31 ;; This Lisp code is run in Emacs when it is to operate as
32 ;; a server for other processes.
33
34 ;; Load this library and do M-x server-edit to enable Emacs as a server.
35 ;; Emacs opens up a socket for communication with clients. If there are no
36 ;; client buffers to edit, server-edit acts like (switch-to-buffer
37 ;; (other-buffer))
38
39 ;; When some other program runs "the editor" to edit a file,
40 ;; "the editor" can be the Emacs client program ../lib-src/emacsclient.
41 ;; This program transmits the file names to Emacs through
42 ;; the server subprocess, and Emacs visits them and lets you edit them.
43
44 ;; Note that any number of clients may dispatch files to emacs to be edited.
45
46 ;; When you finish editing a Server buffer, again call server-edit
47 ;; to mark that buffer as done for the client and switch to the next
48 ;; Server buffer. When all the buffers for a client have been edited
49 ;; and exited with server-edit, the client "editor" will return
50 ;; to the program that invoked it.
51
52 ;; Your editing commands and Emacs's display output go to and from
53 ;; the terminal in the usual way. Thus, server operation is possible
54 ;; only when Emacs can talk to the terminal at the time you invoke
55 ;; the client. This is possible in four cases:
56
57 ;; 1. On a window system, where Emacs runs in one window and the
58 ;; program that wants to use "the editor" runs in another.
59
60 ;; 2. On a multi-terminal system, where Emacs runs on one terminal and the
61 ;; program that wants to use "the editor" runs on another.
62
63 ;; 3. When the program that wants to use "the editor" is running
64 ;; as a subprocess of Emacs.
65
66 ;; 4. On a system with job control, when Emacs is suspended, the program
67 ;; that wants to use "the editor" will stop and display
68 ;; "Waiting for Emacs...". It can then be suspended, and Emacs can be
69 ;; brought into the foreground for editing. When done editing, Emacs is
70 ;; suspended again, and the client program is brought into the foreground.
71
72 ;; The buffer local variable "server-buffer-clients" lists
73 ;; the clients who are waiting for this buffer to be edited.
74 ;; The global variable "server-clients" lists all the waiting clients,
75 ;; and which files are yet to be edited for each.
76
77 ;;; Code:
78
79 (eval-when-compile (require 'cl))
80
81 (defgroup server nil
82 "Emacs running as a server process."
83 :group 'external)
84
85 (defcustom server-visit-hook nil
86 "*Hook run when visiting a file for the Emacs server."
87 :group 'server
88 :type 'hook)
89
90 (defcustom server-switch-hook nil
91 "*Hook run when switching to a buffer for the Emacs server."
92 :group 'server
93 :type 'hook)
94
95 (defcustom server-done-hook nil
96 "*Hook run when done editing a buffer for the Emacs server."
97 :group 'server
98 :type 'hook)
99
100 (defvar server-process nil
101 "The current server process.")
102
103 (defvar server-clients nil
104 "List of current server clients.
105 Each element is (CLIENTID BUFFERS...) where CLIENTID is a string
106 that can be given to the server process to identify a client.
107 When a buffer is marked as \"done\", it is removed from this list.")
108
109 (defvar server-buffer-clients nil
110 "List of client ids for clients requesting editing of current buffer.")
111 (make-variable-buffer-local 'server-buffer-clients)
112 ;; Changing major modes should not erase this local.
113 (put 'server-buffer-clients 'permanent-local t)
114
115 (defcustom server-window nil
116 "*Specification of the window to use for selecting Emacs server buffers.
117 If nil, use the selected window.
118 If it is a function, it should take one argument (a buffer) and
119 display and select it. A common value is `pop-to-buffer'.
120 If it is a window, use that.
121 If it is a frame, use the frame's selected window.
122
123 It is not meaningful to set this to a specific frame or window with Custom.
124 Only programs can do so."
125 :group 'server
126 :version "21.4"
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")))
133
134 (defcustom server-temp-file-regexp "^/tmp/Re\\|/draft$"
135 "*Regexp matching names of temporary files.
136 These are deleted and reused after each edit by the programs that
137 invoke the Emacs server."
138 :group 'server
139 :type 'regexp)
140
141 (defcustom server-kill-new-buffers t
142 "*Whether to kill buffers when done with them.
143 If non-nil, kill a buffer unless it already existed before editing
144 it with Emacs server. If nil, kill only buffers as specified by
145 `server-temp-file-regexp'.
146 Please note that only buffers are killed that still have a client,
147 i.e. buffers visited which \"emacsclient --no-wait\" are never killed in
148 this way."
149 :group 'server
150 :type 'boolean
151 :version "21.1")
152
153 (or (assq 'server-buffer-clients minor-mode-alist)
154 (setq minor-mode-alist (cons '(server-buffer-clients " Server") minor-mode-alist)))
155
156 (defvar server-existing-buffer nil
157 "Non-nil means the buffer existed before the server was asked to visit it.
158 This means that the server should not kill the buffer when you say you
159 are done with it in the server.")
160 (make-variable-buffer-local 'server-existing-buffer)
161
162 (defvar server-socket-name
163 (format "/tmp/emacs%d-%s/server" (user-uid)
164 (substring (system-name) 0 (string-match "\\." (system-name)))))
165
166 (defun server-log (string &optional client)
167 "If a *server* buffer exists, write STRING to it for logging purposes."
168 (if (get-buffer "*server*")
169 (with-current-buffer "*server*"
170 (goto-char (point-max))
171 (insert (current-time-string)
172 (if client (format " %s:" client) " ")
173 string)
174 (or (bolp) (newline)))))
175
176 (defun server-sentinel (proc msg)
177 (let ((client (assq proc server-clients)))
178 ;; Remove PROC from the list of clients.
179 (when client
180 (setq server-clients (delq client server-clients))
181 (dolist (buf (cdr client))
182 (with-current-buffer buf
183 ;; Remove PROC from the clients of each buffer.
184 (setq server-buffer-clients (delq proc server-buffer-clients))
185 ;; Kill the buffer if necessary.
186 (when (and (null server-buffer-clients)
187 (or (and server-kill-new-buffers
188 (not server-existing-buffer))
189 (server-temp-file-p)))
190 (kill-buffer (current-buffer)))))))
191 (server-log (format "Status changed to %s" (process-status proc)) proc))
192
193 (defun server-select-display (display)
194 ;; If the current frame is on `display' we're all set.
195 (unless (equal (frame-parameter (selected-frame) 'display) display)
196 ;; Otherwise, look for an existing frame there and select it.
197 (dolist (frame (frame-list))
198 (when (equal (frame-parameter frame 'display) display)
199 (select-frame frame)))
200 ;; If there's no frame on that display yet, create a dummy one
201 ;; and select it.
202 (unless (equal (frame-parameter (selected-frame) 'display) display)
203 (select-frame
204 (make-frame-on-display
205 display
206 ;; This frame is only there in place of an actual "current display"
207 ;; setting, so we want it to be as unobtrusive as possible. That's
208 ;; what the invisibility is for. The minibuffer setting is so that
209 ;; we don't end up displaying a buffer in it (which noone would
210 ;; notice).
211 '((visibility . nil) (minibuffer . only)))))))
212
213 (defun server-unquote-arg (arg)
214 (replace-regexp-in-string
215 "&." (lambda (s)
216 (case (aref s 1)
217 (?& "&")
218 (?- "-")
219 (?n "\n")
220 (t " ")))
221 arg t t))
222
223 (defun server-ensure-safe-dir (dir)
224 "Make sure DIR is a directory with no race-condition issues.
225 Creates the directory if necessary and makes sure:
226 - there's no symlink involved
227 - it's owned by us
228 - it's not readable/writable by anybody else."
229 (setq dir (directory-file-name dir))
230 (let ((attrs (file-attributes dir)))
231 (unless attrs
232 (letf (((default-file-modes) ?\700)) (make-directory dir))
233 (setq attrs (file-attributes dir)))
234 ;; Check that it's safe for use.
235 (unless (and (eq t (car attrs)) (eq (nth 2 attrs) (user-uid))
236 (zerop (logand ?\077 (file-modes dir))))
237 (error "The directory %s is unsafe" dir))))
238
239 ;;;###autoload
240 (defun server-start (&optional leave-dead)
241 "Allow this Emacs process to be a server for client processes.
242 This starts a server communications subprocess through which
243 client \"editors\" can send your editing commands to this Emacs job.
244 To use the server, set up the program `emacsclient' in the
245 Emacs distribution as your standard \"editor\".
246
247 Prefix arg means just kill any existing server communications subprocess."
248 (interactive "P")
249 ;; Make sure there is a safe directory in which to place the socket.
250 (server-ensure-safe-dir (file-name-directory server-socket-name))
251 ;; kill it dead!
252 (condition-case () (delete-process server-process) (error nil))
253 ;; Delete the socket files made by previous server invocations.
254 (condition-case () (delete-file server-socket-name) (error nil))
255 ;; If this Emacs already had a server, clear out associated status.
256 (while server-clients
257 (let ((buffer (nth 1 (car server-clients))))
258 (server-buffer-done buffer)))
259 (unless leave-dead
260 (if server-process
261 (server-log (message "Restarting server")))
262 (let ((umask (default-file-modes)))
263 (unwind-protect
264 (progn
265 (set-default-file-modes ?\700)
266 (setq server-process
267 (make-network-process
268 :name "server" :family 'local :server t :noquery t
269 :service server-socket-name
270 :sentinel 'server-sentinel :filter 'server-process-filter
271 ;; We must receive file names without being decoded.
272 ;; Those are decoded by server-process-filter according
273 ;; to file-name-coding-system.
274 :coding 'raw-text)))
275 (set-default-file-modes umask)))))
276
277 ;;;###autoload
278 (define-minor-mode server-mode
279 "Toggle Server mode.
280 With ARG, turn Server mode on if ARG is positive, off otherwise.
281 Server mode runs a process that accepts commands from the
282 `emacsclient' program. See `server-start' and Info node `Emacs server'."
283 :global t
284 :group 'server
285 :version "21.4"
286 ;; Fixme: Should this check for an existing server socket and do
287 ;; nothing if there is one (for multiple Emacs sessions)?
288 (server-start (not server-mode)))
289 \f
290 (defun server-process-filter (proc string)
291 "Process a request from the server to edit some files.
292 PROC is the server process. Format of STRING is \"PATH PATH PATH... \\n\"."
293 (server-log string proc)
294 (let ((prev (process-get proc 'previous-string)))
295 (when prev
296 (setq string (concat prev string))
297 (process-put proc 'previous-string nil)))
298 ;; If the input is multiple lines,
299 ;; process each line individually.
300 (while (string-match "\n" string)
301 (let ((request (substring string 0 (match-beginning 0)))
302 (coding-system (and default-enable-multibyte-characters
303 (or file-name-coding-system
304 default-file-name-coding-system)))
305 client nowait eval
306 (files nil)
307 (lineno 1)
308 (columnno 0))
309 ;; Remove this line from STRING.
310 (setq string (substring string (match-end 0)))
311 (setq client (cons proc nil))
312 (while (string-match "[^ ]* " request)
313 (let ((arg (substring request (match-beginning 0) (1- (match-end 0)))))
314 (setq request (substring request (match-end 0)))
315 (cond
316 ((equal "-nowait" arg) (setq nowait t))
317 ((equal "-eval" arg) (setq eval t))
318 ((and (equal "-display" arg) (string-match "\\([^ ]*\\) " request))
319 (let ((display (server-unquote-arg (match-string 1 request))))
320 (setq request (substring request (match-end 0)))
321 (condition-case err
322 (server-select-display display)
323 (error (process-send-string proc (nth 1 err))
324 (setq request "")))))
325 ;; ARG is a line number option.
326 ((string-match "\\`\\+[0-9]+\\'" arg)
327 (setq lineno (string-to-int (substring arg 1))))
328 ;; ARG is line number:column option.
329 ((string-match "\\`+\\([0-9]+\\):\\([0-9]+\\)\\'" arg)
330 (setq lineno (string-to-int (match-string 1 arg))
331 columnno (string-to-int (match-string 2 arg))))
332 (t
333 ;; Undo the quoting that emacsclient does
334 ;; for certain special characters.
335 (setq arg (server-unquote-arg arg))
336 ;; Now decode the file name if necessary.
337 (if coding-system
338 (setq arg (decode-coding-string arg coding-system)))
339 (if eval
340 (let ((v (eval (car (read-from-string arg)))))
341 (when v
342 (with-temp-buffer
343 (let ((standard-output (current-buffer)))
344 (pp v)
345 (process-send-region proc (point-min) (point-max))))))
346 ;; ARG is a file name.
347 ;; Collapse multiple slashes to single slashes.
348 (setq arg (command-line-normalize-file-name arg))
349 (push (list arg lineno columnno) files))
350 (setq lineno 1)
351 (setq columnno 0)))))
352 (when files
353 (run-hooks 'pre-command-hook)
354 (server-visit-files files client nowait)
355 (run-hooks 'post-command-hook))
356 ;; CLIENT is now a list (CLIENTNUM BUFFERS...)
357 (if (null (cdr client))
358 ;; This client is empty; get rid of it immediately.
359 (progn
360 (delete-process proc)
361 (server-log "Close empty client" proc))
362 ;; We visited some buffer for this client.
363 (or nowait (push client server-clients))
364 (unless (or isearch-mode (minibufferp))
365 (server-switch-buffer (nth 1 client))
366 (run-hooks 'server-switch-hook)
367 (unless nowait
368 (message (substitute-command-keys
369 "When done with a buffer, type \\[server-edit]")))))))
370 ;; Save for later any partial line that remains.
371 (when (> (length string) 0)
372 (process-put proc 'previous-string string)))
373
374 (defun server-goto-line-column (file-line-col)
375 (goto-line (nth 1 file-line-col))
376 (let ((column-number (nth 2 file-line-col)))
377 (if (> column-number 0)
378 (move-to-column (1- column-number)))))
379
380 (defun server-visit-files (files client &optional nowait)
381 "Find FILES and return the list CLIENT with the buffers nconc'd.
382 FILES is an alist whose elements are (FILENAME LINENUMBER COLUMNNUMBER).
383 NOWAIT non-nil means this client is not waiting for the results,
384 so don't mark these buffers specially, just visit them normally."
385 ;; Bind last-nonmenu-event to force use of keyboard, not mouse, for queries.
386 (let ((last-nonmenu-event t) client-record)
387 ;; Restore the current buffer afterward, but not using save-excursion,
388 ;; because we don't want to save point in this buffer
389 ;; if it happens to be one of those specified by the server.
390 (save-current-buffer
391 (dolist (file files)
392 ;; If there is an existing buffer modified or the file is
393 ;; modified, revert it. If there is an existing buffer with
394 ;; deleted file, offer to write it.
395 (let* ((filen (car file))
396 (obuf (get-file-buffer filen)))
397 (push filen file-name-history)
398 (if (and obuf (set-buffer obuf))
399 (progn
400 (cond ((file-exists-p filen)
401 (if (not (verify-visited-file-modtime obuf))
402 (revert-buffer t nil)))
403 (t
404 (if (y-or-n-p
405 (concat "File no longer exists: "
406 filen
407 ", write buffer to file? "))
408 (write-file filen))))
409 (setq server-existing-buffer t)
410 (server-goto-line-column file))
411 (set-buffer (find-file-noselect filen))
412 (server-goto-line-column file)
413 (run-hooks 'server-visit-hook)))
414 (unless nowait
415 ;; When the buffer is killed, inform the clients.
416 (add-hook 'kill-buffer-hook 'server-kill-buffer nil t)
417 (push (car client) server-buffer-clients))
418 (push (current-buffer) client-record)))
419 (nconc client client-record)))
420 \f
421 (defun server-buffer-done (buffer &optional for-killing)
422 "Mark BUFFER as \"done\" for its client(s).
423 This buries the buffer, then returns a list of the form (NEXT-BUFFER KILLED).
424 NEXT-BUFFER is another server buffer, as a suggestion for what to select next,
425 or nil. KILLED is t if we killed BUFFER (typically, because it was visiting
426 a temp file).
427 FOR-KILLING if non-nil indicates that we are called from `kill-buffer'."
428 (let ((next-buffer nil)
429 (killed nil)
430 (old-clients server-clients))
431 (while old-clients
432 (let ((client (car old-clients)))
433 (or next-buffer
434 (setq next-buffer (nth 1 (memq buffer client))))
435 (delq buffer client)
436 ;; Delete all dead buffers from CLIENT.
437 (let ((tail client))
438 (while tail
439 (and (bufferp (car tail))
440 (null (buffer-name (car tail)))
441 (delq (car tail) client))
442 (setq tail (cdr tail))))
443 ;; If client now has no pending buffers,
444 ;; tell it that it is done, and forget it entirely.
445 (unless (cdr client)
446 (delete-process (car client))
447 (server-log "Close" (car client))
448 (setq server-clients (delq client server-clients))))
449 (setq old-clients (cdr old-clients)))
450 (if (and (bufferp buffer) (buffer-name buffer))
451 ;; We may or may not kill this buffer;
452 ;; if we do, do not call server-buffer-done recursively
453 ;; from kill-buffer-hook.
454 (let ((server-kill-buffer-running t))
455 (with-current-buffer buffer
456 (setq server-buffer-clients nil)
457 (run-hooks 'server-done-hook))
458 ;; Notice whether server-done-hook killed the buffer.
459 (if (null (buffer-name buffer))
460 (setq killed t)
461 ;; Don't bother killing or burying the buffer
462 ;; when we are called from kill-buffer.
463 (unless for-killing
464 (when (and (not killed)
465 server-kill-new-buffers
466 (with-current-buffer buffer
467 (not server-existing-buffer)))
468 (setq killed t)
469 (bury-buffer buffer)
470 (kill-buffer buffer))
471 (unless killed
472 (if (server-temp-file-p buffer)
473 (progn
474 (kill-buffer buffer)
475 (setq killed t))
476 (bury-buffer buffer)))))))
477 (list next-buffer killed)))
478
479 (defun server-temp-file-p (&optional buffer)
480 "Return non-nil if BUFFER contains a file considered temporary.
481 These are files whose names suggest they are repeatedly
482 reused to pass information to another program.
483
484 The variable `server-temp-file-regexp' controls which filenames
485 are considered temporary."
486 (and (buffer-file-name buffer)
487 (string-match server-temp-file-regexp (buffer-file-name buffer))))
488
489 (defun server-done ()
490 "Offer to save current buffer, mark it as \"done\" for clients.
491 This kills or buries the buffer, then returns a list
492 of the form (NEXT-BUFFER KILLED). NEXT-BUFFER is another server buffer,
493 as a suggestion for what to select next, or nil.
494 KILLED is t if we killed BUFFER, which happens if it was created
495 specifically for the clients and did not exist before their request for it."
496 (when server-buffer-clients
497 (if (server-temp-file-p)
498 ;; For a temp file, save, and do make a non-numeric backup
499 ;; (unless make-backup-files is nil).
500 (let ((version-control nil)
501 (buffer-backed-up nil))
502 (save-buffer))
503 (if (and (buffer-modified-p)
504 buffer-file-name
505 (y-or-n-p (concat "Save file " buffer-file-name "? ")))
506 (save-buffer)))
507 (server-buffer-done (current-buffer))))
508
509 ;; Ask before killing a server buffer.
510 ;; It was suggested to release its client instead,
511 ;; but I think that is dangerous--the client would proceed
512 ;; using whatever is on disk in that file. -- rms.
513 (defun server-kill-buffer-query-function ()
514 (or (not server-buffer-clients)
515 (yes-or-no-p (format "Buffer `%s' still has clients; kill it? "
516 (buffer-name (current-buffer))))))
517
518 (add-hook 'kill-buffer-query-functions
519 'server-kill-buffer-query-function)
520
521 (defun server-kill-emacs-query-function ()
522 (let (live-client
523 (tail server-clients))
524 ;; See if any clients have any buffers that are still alive.
525 (while tail
526 (if (memq t (mapcar 'stringp (mapcar 'buffer-name (cdr (car tail)))))
527 (setq live-client t))
528 (setq tail (cdr tail)))
529 (or (not live-client)
530 (yes-or-no-p "Server buffers still have clients; exit anyway? "))))
531
532 (add-hook 'kill-emacs-query-functions 'server-kill-emacs-query-function)
533
534 (defvar server-kill-buffer-running nil
535 "Non-nil while `server-kill-buffer' or `server-buffer-done' is running.")
536
537 (defun server-kill-buffer ()
538 ;; Prevent infinite recursion if user has made server-done-hook
539 ;; call kill-buffer.
540 (or server-kill-buffer-running
541 (and server-buffer-clients
542 (let ((server-kill-buffer-running t))
543 (when server-process
544 (server-buffer-done (current-buffer) t))))))
545 \f
546 (defun server-edit (&optional arg)
547 "Switch to next server editing buffer; say \"Done\" for current buffer.
548 If a server buffer is current, it is marked \"done\" and optionally saved.
549 The buffer is also killed if it did not exist before the clients asked for it.
550 When all of a client's buffers are marked as \"done\", the client is notified.
551
552 Temporary files such as MH <draft> files are always saved and backed up,
553 no questions asked. (The variable `make-backup-files', if nil, still
554 inhibits a backup; you can set it locally in a particular buffer to
555 prevent a backup for it.) The variable `server-temp-file-regexp' controls
556 which filenames are considered temporary.
557
558 If invoked with a prefix argument, or if there is no server process running,
559 starts server process and that is all. Invoked by \\[server-edit]."
560 (interactive "P")
561 (if (or arg
562 (not server-process)
563 (memq (process-status server-process) '(signal exit)))
564 (server-start nil)
565 (apply 'server-switch-buffer (server-done))))
566
567 (defun server-switch-buffer (&optional next-buffer killed-one)
568 "Switch to another buffer, preferably one that has a client.
569 Arg NEXT-BUFFER is a suggestion; if it is a live buffer, use it."
570 ;; KILLED-ONE is t in a recursive call
571 ;; if we have already killed one temp-file server buffer.
572 ;; This means we should avoid the final "switch to some other buffer"
573 ;; since we've already effectively done that.
574 (if (null next-buffer)
575 (if server-clients
576 (server-switch-buffer (nth 1 (car server-clients)) killed-one)
577 (unless (or killed-one (window-dedicated-p (selected-window)))
578 (switch-to-buffer (other-buffer))
579 (message "No server buffers remain to edit")))
580 (if (not (buffer-name next-buffer))
581 ;; If NEXT-BUFFER is a dead buffer, remove the server records for it
582 ;; and try the next surviving server buffer.
583 (apply 'server-switch-buffer (server-buffer-done next-buffer))
584 ;; OK, we know next-buffer is live, let's display and select it.
585 (if (functionp server-window)
586 (funcall server-window next-buffer)
587 (let ((win (get-buffer-window next-buffer 0)))
588 (if (and win (not server-window))
589 ;; The buffer is already displayed: just reuse the window.
590 (let ((frame (window-frame win)))
591 (if (eq (frame-visible-p frame) 'icon)
592 (raise-frame frame))
593 (select-window win)
594 (set-buffer next-buffer))
595 ;; Otherwise, let's find an appropriate window.
596 (cond ((and (windowp server-window)
597 (window-live-p server-window))
598 (select-window server-window))
599 ((framep server-window)
600 (if (not (frame-live-p server-window))
601 (setq server-window (make-frame)))
602 (select-window (frame-selected-window server-window))))
603 (if (window-minibuffer-p (selected-window))
604 (select-window (next-window nil 'nomini 0)))
605 ;; Move to a non-dedicated window, if we have one.
606 (when (window-dedicated-p (selected-window))
607 (select-window
608 (get-window-with-predicate
609 (lambda (w)
610 (and (not (window-dedicated-p w))
611 (equal (frame-parameter (window-frame w) 'display)
612 (frame-parameter (selected-frame) 'display))))
613 'nomini 'visible (selected-window))))
614 (condition-case nil
615 (switch-to-buffer next-buffer)
616 ;; After all the above, we might still have ended up with
617 ;; a minibuffer/dedicated-window (if there's no other).
618 (error (pop-to-buffer next-buffer)))))))))
619
620 (global-set-key "\C-x#" 'server-edit)
621
622 (defun server-unload-hook ()
623 (server-start t)
624 (remove-hook 'kill-buffer-query-functions 'server-kill-buffer-query-function)
625 (remove-hook 'kill-emacs-query-functions 'server-kill-emacs-query-function)
626 (remove-hook 'kill-buffer-hook 'server-kill-buffer))
627 \f
628 (provide 'server)
629
630 ;;; server.el ends here