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