Mercurial > emacs
annotate lisp/server.el @ 14659:7669c19beda8
Comment change.
| author | Richard M. Stallman <rms@gnu.org> |
|---|---|
| date | Sat, 24 Feb 1996 04:43:05 +0000 |
| parents | aa3232e9077f |
| children | 6251b4796e2b |
| rev | line source |
|---|---|
|
658
7cbd4fcd8b0f
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
445
diff
changeset
|
1 ;;; server.el --- Lisp code for GNU Emacs running as server process. |
|
7cbd4fcd8b0f
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
445
diff
changeset
|
2 |
| 11235 | 3 ;; Copyright (C) 1986, 1987, 1992, 1994, 1995 Free Software Foundation, Inc. |
|
844
bf829a2d63b4
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
814
diff
changeset
|
4 |
|
787
3cece0106722
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
702
diff
changeset
|
5 ;; Author: William Sommerfeld <wesommer@athena.mit.edu> |
|
814
38b2499cb3e9
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
807
diff
changeset
|
6 ;; Keywords: processes |
|
787
3cece0106722
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
702
diff
changeset
|
7 |
|
3cece0106722
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
702
diff
changeset
|
8 ;; Changes by peck@sun.com and by rms. |
|
3cece0106722
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
702
diff
changeset
|
9 |
| 50 | 10 ;; This file is part of GNU Emacs. |
| 11 | |
| 12 ;; GNU Emacs is free software; you can redistribute it and/or modify | |
| 13 ;; it under the terms of the GNU General Public License as published by | |
|
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
787
diff
changeset
|
14 ;; the Free Software Foundation; either version 2, or (at your option) |
| 50 | 15 ;; any later version. |
| 16 | |
| 17 ;; GNU Emacs is distributed in the hope that it will be useful, | |
| 18 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
| 19 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
| 20 ;; GNU General Public License for more details. | |
| 21 | |
| 22 ;; You should have received a copy of the GNU General Public License | |
| 14169 | 23 ;; along with GNU Emacs; see the file COPYING. If not, write to the |
| 24 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330, | |
| 25 ;; Boston, MA 02111-1307, USA. | |
| 50 | 26 |
|
787
3cece0106722
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
702
diff
changeset
|
27 ;;; Commentary: |
| 50 | 28 |
| 14169 | 29 ;; This Lisp code is run in Emacs when it is to operate as |
| 30 ;; a server for other processes. | |
| 50 | 31 |
| 14169 | 32 ;; Load this library and do M-x server-edit to enable Emacs as a server. |
| 33 ;; Emacs runs the program ../arch-lib/emacsserver as a subprocess | |
| 34 ;; for communication with clients. If there are no client buffers to edit, | |
| 35 ;; server-edit acts like (switch-to-buffer (other-buffer)) | |
| 50 | 36 |
| 14169 | 37 ;; When some other program runs "the editor" to edit a file, |
| 38 ;; "the editor" can be the Emacs client program ../lib-src/emacsclient. | |
| 39 ;; This program transmits the file names to Emacs through | |
| 40 ;; the server subprocess, and Emacs visits them and lets you edit them. | |
| 50 | 41 |
| 14169 | 42 ;; Note that any number of clients may dispatch files to emacs to be edited. |
| 50 | 43 |
| 14169 | 44 ;; When you finish editing a Server buffer, again call server-edit |
| 45 ;; to mark that buffer as done for the client and switch to the next | |
| 46 ;; Server buffer. When all the buffers for a client have been edited | |
| 47 ;; and exited with server-edit, the client "editor" will return | |
| 48 ;; to the program that invoked it. | |
| 50 | 49 |
| 14169 | 50 ;; Your editing commands and Emacs's display output go to and from |
| 51 ;; the terminal in the usual way. Thus, server operation is possible | |
| 52 ;; only when Emacs can talk to the terminal at the time you invoke | |
| 53 ;; the client. This is possible in four cases: | |
| 50 | 54 |
| 14169 | 55 ;; 1. On a window system, where Emacs runs in one window and the |
| 56 ;; program that wants to use "the editor" runs in another. | |
| 50 | 57 |
| 14169 | 58 ;; 2. On a multi-terminal system, where Emacs runs on one terminal and the |
| 59 ;; program that wants to use "the editor" runs on another. | |
| 50 | 60 |
| 14169 | 61 ;; 3. When the program that wants to use "the editor" is running |
| 62 ;; as a subprocess of Emacs. | |
| 50 | 63 |
| 14169 | 64 ;; 4. On a system with job control, when Emacs is suspended, the program |
| 65 ;; that wants to use "the editor" will stop and display | |
| 66 ;; "Waiting for Emacs...". It can then be suspended, and Emacs can be | |
| 67 ;; brought into the foreground for editing. When done editing, Emacs is | |
| 68 ;; suspended again, and the client program is brought into the foreground. | |
| 50 | 69 |
| 14169 | 70 ;; The buffer local variable "server-buffer-clients" lists |
| 71 ;; the clients who are waiting for this buffer to be edited. | |
| 72 ;; The global variable "server-clients" lists all the waiting clients, | |
| 73 ;; and which files are yet to be edited for each. | |
|
787
3cece0106722
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
702
diff
changeset
|
74 |
|
3cece0106722
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
702
diff
changeset
|
75 ;;; Code: |
| 50 | 76 |
|
6176
1dbec303c87b
(kill-emacs-query-functions, kill-buffer-query-functions):
Richard M. Stallman <rms@gnu.org>
parents:
5749
diff
changeset
|
77 (defvar server-program (expand-file-name "emacsserver" exec-directory) |
|
5749
4555bdf89b40
(server-program): Add exec-directory to value.
Richard M. Stallman <rms@gnu.org>
parents:
4500
diff
changeset
|
78 "*The program to use as the edit server.") |
| 50 | 79 |
| 80 (defvar server-visit-hook nil | |
|
2866
48ddb3600ae6
* server.el (server-switch-hook): New hook.
Jim Blandy <jimb@redhat.com>
parents:
1540
diff
changeset
|
81 "*List of hooks to call when visiting a file for the Emacs server.") |
|
48ddb3600ae6
* server.el (server-switch-hook): New hook.
Jim Blandy <jimb@redhat.com>
parents:
1540
diff
changeset
|
82 |
|
48ddb3600ae6
* server.el (server-switch-hook): New hook.
Jim Blandy <jimb@redhat.com>
parents:
1540
diff
changeset
|
83 (defvar server-switch-hook nil |
| 50 | 84 "*List of hooks to call when switching to a buffer for the Emacs server.") |
| 85 | |
|
7597
99a600c67e82
(server-done-hook): New hook.
Richard M. Stallman <rms@gnu.org>
parents:
7553
diff
changeset
|
86 (defvar server-done-hook nil |
|
99a600c67e82
(server-done-hook): New hook.
Richard M. Stallman <rms@gnu.org>
parents:
7553
diff
changeset
|
87 "*List of hooks to call when done editing a buffer for the Emacs server.") |
|
99a600c67e82
(server-done-hook): New hook.
Richard M. Stallman <rms@gnu.org>
parents:
7553
diff
changeset
|
88 |
| 50 | 89 (defvar server-process nil |
| 90 "the current server process") | |
| 91 | |
| 138 | 92 (defvar server-previous-string "") |
| 93 | |
| 50 | 94 (defvar server-clients nil |
| 95 "List of current server clients. | |
|
7736
8c8410bc0f1b
(server-visit-files): Bind last-nonmenu-event.
Richard M. Stallman <rms@gnu.org>
parents:
7597
diff
changeset
|
96 Each element is (CLIENTID BUFFERS...) where CLIENTID is a string |
| 50 | 97 that can be given to the server process to identify a client. |
| 98 When a buffer is marked as \"done\", it is removed from this list.") | |
| 99 | |
| 100 (defvar server-buffer-clients nil | |
| 101 "List of clientids for clients requesting editing of current buffer.") | |
|
6176
1dbec303c87b
(kill-emacs-query-functions, kill-buffer-query-functions):
Richard M. Stallman <rms@gnu.org>
parents:
5749
diff
changeset
|
102 (make-variable-buffer-local 'server-buffer-clients) |
| 50 | 103 ;; Changing major modes should not erase this local. |
| 104 (put 'server-buffer-clients 'permanent-local t) | |
| 105 | |
|
3661
65d530f613a8
(server-window): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
2866
diff
changeset
|
106 (defvar server-window nil |
|
65d530f613a8
(server-window): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
2866
diff
changeset
|
107 "*The window to use for selecting Emacs server buffers. |
|
65d530f613a8
(server-window): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
2866
diff
changeset
|
108 If nil, use the selected window. |
|
65d530f613a8
(server-window): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
2866
diff
changeset
|
109 If it is a frame, use the frame's selected window.") |
|
65d530f613a8
(server-window): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
2866
diff
changeset
|
110 |
| 50 | 111 (defvar server-temp-file-regexp "^/tmp/Re\\|/draft$" |
| 112 "*Regexp which should match filenames of temporary files | |
| 113 which are deleted and reused after each edit | |
| 114 by the programs that invoke the emacs server.") | |
| 115 | |
| 116 (or (assq 'server-buffer-clients minor-mode-alist) | |
| 117 (setq minor-mode-alist (cons '(server-buffer-clients " Server") minor-mode-alist))) | |
| 118 | |
| 119 ;; If a *server* buffer exists, | |
| 120 ;; write STRING to it for logging purposes. | |
| 121 (defun server-log (string) | |
| 122 (if (get-buffer "*server*") | |
| 123 (save-excursion | |
| 124 (set-buffer "*server*") | |
| 125 (goto-char (point-max)) | |
|
13468
2c8da6b3b9e0
(server-log): Record the current time.
Richard M. Stallman <rms@gnu.org>
parents:
13157
diff
changeset
|
126 (insert (current-time-string) " " string) |
|
2c8da6b3b9e0
(server-log): Record the current time.
Richard M. Stallman <rms@gnu.org>
parents:
13157
diff
changeset
|
127 (or (bolp) (newline))))) |
| 50 | 128 |
| 129 (defun server-sentinel (proc msg) | |
| 130 (cond ((eq (process-status proc) 'exit) | |
| 131 (server-log (message "Server subprocess exited"))) | |
| 132 ((eq (process-status proc) 'signal) | |
| 133 (server-log (message "Server subprocess killed"))))) | |
| 134 | |
| 256 | 135 ;;;###autoload |
| 50 | 136 (defun server-start (&optional leave-dead) |
| 137 "Allow this Emacs process to be a server for client processes. | |
| 138 This starts a server communications subprocess through which | |
| 139 client \"editors\" can send your editing commands to this Emacs job. | |
|
7855
69ec123ef310
(server-start): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
7736
diff
changeset
|
140 To use the server, set up the program `emacsclient' in the |
| 50 | 141 Emacs distribution as your standard \"editor\". |
| 142 | |
| 143 Prefix arg means just kill any existing server communications subprocess." | |
| 144 (interactive "P") | |
| 145 ;; kill it dead! | |
| 146 (if server-process | |
| 147 (progn | |
| 148 (set-process-sentinel server-process nil) | |
| 149 (condition-case () (delete-process server-process) (error nil)))) | |
| 150 (condition-case () (delete-file "~/.emacs_server") (error nil)) | |
|
13157
31242cebf1d3
(server-start): Try both full hostname and shortened
Richard M. Stallman <rms@gnu.org>
parents:
13070
diff
changeset
|
151 (let* ((sysname (system-name)) |
|
31242cebf1d3
(server-start): Try both full hostname and shortened
Richard M. Stallman <rms@gnu.org>
parents:
13070
diff
changeset
|
152 (dot-index (string-match "\\." sysname))) |
|
31242cebf1d3
(server-start): Try both full hostname and shortened
Richard M. Stallman <rms@gnu.org>
parents:
13070
diff
changeset
|
153 (condition-case () |
|
31242cebf1d3
(server-start): Try both full hostname and shortened
Richard M. Stallman <rms@gnu.org>
parents:
13070
diff
changeset
|
154 (delete-file (format "/tmp/esrv%d-%s" (user-uid) sysname)) |
|
31242cebf1d3
(server-start): Try both full hostname and shortened
Richard M. Stallman <rms@gnu.org>
parents:
13070
diff
changeset
|
155 (error nil)) |
|
31242cebf1d3
(server-start): Try both full hostname and shortened
Richard M. Stallman <rms@gnu.org>
parents:
13070
diff
changeset
|
156 ;; In case the server file name was made with a domainless hostname, |
|
31242cebf1d3
(server-start): Try both full hostname and shortened
Richard M. Stallman <rms@gnu.org>
parents:
13070
diff
changeset
|
157 ;; try deleting that name too. |
|
31242cebf1d3
(server-start): Try both full hostname and shortened
Richard M. Stallman <rms@gnu.org>
parents:
13070
diff
changeset
|
158 (if dot-index |
|
31242cebf1d3
(server-start): Try both full hostname and shortened
Richard M. Stallman <rms@gnu.org>
parents:
13070
diff
changeset
|
159 (condition-case () |
|
31242cebf1d3
(server-start): Try both full hostname and shortened
Richard M. Stallman <rms@gnu.org>
parents:
13070
diff
changeset
|
160 (delete-file (format "/tmp/esrv%d-%s" (user-uid) |
|
31242cebf1d3
(server-start): Try both full hostname and shortened
Richard M. Stallman <rms@gnu.org>
parents:
13070
diff
changeset
|
161 (substring sysname 0 dot-index))) |
|
31242cebf1d3
(server-start): Try both full hostname and shortened
Richard M. Stallman <rms@gnu.org>
parents:
13070
diff
changeset
|
162 (error nil)))) |
| 50 | 163 ;; If we already had a server, clear out associated status. |
| 164 (while server-clients | |
| 165 (let ((buffer (nth 1 (car server-clients)))) | |
| 166 (server-buffer-done buffer))) | |
| 167 (if leave-dead | |
| 168 nil | |
| 169 (if server-process | |
| 170 (server-log (message "Restarting server"))) | |
|
8733
14b8f8a28ace
(server-start): Always use pipes for communication.
Richard M. Stallman <rms@gnu.org>
parents:
8202
diff
changeset
|
171 ;; Using a pty is wasteful, and the separate session causes |
|
14b8f8a28ace
(server-start): Always use pipes for communication.
Richard M. Stallman <rms@gnu.org>
parents:
8202
diff
changeset
|
172 ;; annoyance sometimes (some systems kill idle sessions). |
|
14b8f8a28ace
(server-start): Always use pipes for communication.
Richard M. Stallman <rms@gnu.org>
parents:
8202
diff
changeset
|
173 (let ((process-connection-type nil)) |
|
14b8f8a28ace
(server-start): Always use pipes for communication.
Richard M. Stallman <rms@gnu.org>
parents:
8202
diff
changeset
|
174 (setq server-process (start-process "server" nil server-program))) |
| 50 | 175 (set-process-sentinel server-process 'server-sentinel) |
| 176 (set-process-filter server-process 'server-process-filter) | |
| 177 (process-kill-without-query server-process))) | |
| 178 | |
| 179 ;Process a request from the server to edit some files. | |
| 180 ;Format of STRING is "Client: CLIENTID PATH PATH PATH... \n" | |
| 181 (defun server-process-filter (proc string) | |
| 182 (server-log string) | |
| 138 | 183 (setq string (concat server-previous-string string)) |
|
10281
44d98e169823
(server-process-filter): Process each line separately.
Richard M. Stallman <rms@gnu.org>
parents:
10218
diff
changeset
|
184 ;; If the input is multiple lines, |
|
44d98e169823
(server-process-filter): Process each line separately.
Richard M. Stallman <rms@gnu.org>
parents:
10218
diff
changeset
|
185 ;; process each line individually. |
|
44d98e169823
(server-process-filter): Process each line separately.
Richard M. Stallman <rms@gnu.org>
parents:
10218
diff
changeset
|
186 (while (string-match "\n" string) |
|
44d98e169823
(server-process-filter): Process each line separately.
Richard M. Stallman <rms@gnu.org>
parents:
10218
diff
changeset
|
187 (let ((request (substring string 0 (match-beginning 0))) |
|
44d98e169823
(server-process-filter): Process each line separately.
Richard M. Stallman <rms@gnu.org>
parents:
10218
diff
changeset
|
188 client |
| 50 | 189 (files nil) |
| 190 (lineno 1)) | |
|
10281
44d98e169823
(server-process-filter): Process each line separately.
Richard M. Stallman <rms@gnu.org>
parents:
10218
diff
changeset
|
191 ;; Remove this line from STRING. |
|
44d98e169823
(server-process-filter): Process each line separately.
Richard M. Stallman <rms@gnu.org>
parents:
10218
diff
changeset
|
192 (setq string (substring string (match-end 0))) |
|
12411
884975f72dd5
(server-process-filter): Detect error messages from server.
Richard M. Stallman <rms@gnu.org>
parents:
11329
diff
changeset
|
193 (if (string-match "^Error: " request) |
|
14327
0df217c5842d
(server-process-filter): Pass proper format string to message.
Karl Heuer <kwzh@gnu.org>
parents:
14169
diff
changeset
|
194 (message "Server error: %s" (substring request (match-end 0))) |
|
12411
884975f72dd5
(server-process-filter): Detect error messages from server.
Richard M. Stallman <rms@gnu.org>
parents:
11329
diff
changeset
|
195 (if (string-match "^Client: " request) |
|
13070
c668502d5a93
(server-process-filter): Ignore lines that don't start
Richard M. Stallman <rms@gnu.org>
parents:
12822
diff
changeset
|
196 (progn |
|
c668502d5a93
(server-process-filter): Ignore lines that don't start
Richard M. Stallman <rms@gnu.org>
parents:
12822
diff
changeset
|
197 (setq request (substring request (match-end 0))) |
|
c668502d5a93
(server-process-filter): Ignore lines that don't start
Richard M. Stallman <rms@gnu.org>
parents:
12822
diff
changeset
|
198 (setq client (list (substring request 0 (string-match " " request)))) |
|
c668502d5a93
(server-process-filter): Ignore lines that don't start
Richard M. Stallman <rms@gnu.org>
parents:
12822
diff
changeset
|
199 (setq request (substring request (match-end 0))) |
|
c668502d5a93
(server-process-filter): Ignore lines that don't start
Richard M. Stallman <rms@gnu.org>
parents:
12822
diff
changeset
|
200 (while (string-match "[^ ]+ " request) |
|
c668502d5a93
(server-process-filter): Ignore lines that don't start
Richard M. Stallman <rms@gnu.org>
parents:
12822
diff
changeset
|
201 (let ((arg |
|
c668502d5a93
(server-process-filter): Ignore lines that don't start
Richard M. Stallman <rms@gnu.org>
parents:
12822
diff
changeset
|
202 (substring request (match-beginning 0) (1- (match-end 0))))) |
|
c668502d5a93
(server-process-filter): Ignore lines that don't start
Richard M. Stallman <rms@gnu.org>
parents:
12822
diff
changeset
|
203 (setq request (substring request (match-end 0))) |
|
c668502d5a93
(server-process-filter): Ignore lines that don't start
Richard M. Stallman <rms@gnu.org>
parents:
12822
diff
changeset
|
204 (if (string-match "\\`\\+[0-9]+\\'" arg) |
|
14385
aa3232e9077f
(server-process-filter): In file name, collapse multiple slashes to one.
Richard M. Stallman <rms@gnu.org>
parents:
14327
diff
changeset
|
205 ;; ARG is a line number option. |
|
13070
c668502d5a93
(server-process-filter): Ignore lines that don't start
Richard M. Stallman <rms@gnu.org>
parents:
12822
diff
changeset
|
206 (setq lineno (read (substring arg 1))) |
|
14385
aa3232e9077f
(server-process-filter): In file name, collapse multiple slashes to one.
Richard M. Stallman <rms@gnu.org>
parents:
14327
diff
changeset
|
207 ;; ARG is a file name. |
|
aa3232e9077f
(server-process-filter): In file name, collapse multiple slashes to one.
Richard M. Stallman <rms@gnu.org>
parents:
14327
diff
changeset
|
208 ;; Collapse multiple slashes to single slashes, |
|
aa3232e9077f
(server-process-filter): In file name, collapse multiple slashes to one.
Richard M. Stallman <rms@gnu.org>
parents:
14327
diff
changeset
|
209 ;; since in Emacs a multiple slash is not equiv to one. |
|
aa3232e9077f
(server-process-filter): In file name, collapse multiple slashes to one.
Richard M. Stallman <rms@gnu.org>
parents:
14327
diff
changeset
|
210 (while (string-match "//+" arg) |
|
aa3232e9077f
(server-process-filter): In file name, collapse multiple slashes to one.
Richard M. Stallman <rms@gnu.org>
parents:
14327
diff
changeset
|
211 (setq arg (replace-match "/" t t arg))) |
|
13070
c668502d5a93
(server-process-filter): Ignore lines that don't start
Richard M. Stallman <rms@gnu.org>
parents:
12822
diff
changeset
|
212 (setq files |
|
c668502d5a93
(server-process-filter): Ignore lines that don't start
Richard M. Stallman <rms@gnu.org>
parents:
12822
diff
changeset
|
213 (cons (list arg lineno) |
|
c668502d5a93
(server-process-filter): Ignore lines that don't start
Richard M. Stallman <rms@gnu.org>
parents:
12822
diff
changeset
|
214 files)) |
|
c668502d5a93
(server-process-filter): Ignore lines that don't start
Richard M. Stallman <rms@gnu.org>
parents:
12822
diff
changeset
|
215 (setq lineno 1)))) |
|
c668502d5a93
(server-process-filter): Ignore lines that don't start
Richard M. Stallman <rms@gnu.org>
parents:
12822
diff
changeset
|
216 (server-visit-files files client) |
|
c668502d5a93
(server-process-filter): Ignore lines that don't start
Richard M. Stallman <rms@gnu.org>
parents:
12822
diff
changeset
|
217 ;; CLIENT is now a list (CLIENTNUM BUFFERS...) |
|
c668502d5a93
(server-process-filter): Ignore lines that don't start
Richard M. Stallman <rms@gnu.org>
parents:
12822
diff
changeset
|
218 (setq server-clients (cons client server-clients)) |
|
c668502d5a93
(server-process-filter): Ignore lines that don't start
Richard M. Stallman <rms@gnu.org>
parents:
12822
diff
changeset
|
219 (server-switch-buffer (nth 1 client)) |
|
c668502d5a93
(server-process-filter): Ignore lines that don't start
Richard M. Stallman <rms@gnu.org>
parents:
12822
diff
changeset
|
220 (run-hooks 'server-switch-hook) |
|
c668502d5a93
(server-process-filter): Ignore lines that don't start
Richard M. Stallman <rms@gnu.org>
parents:
12822
diff
changeset
|
221 (message (substitute-command-keys |
|
c668502d5a93
(server-process-filter): Ignore lines that don't start
Richard M. Stallman <rms@gnu.org>
parents:
12822
diff
changeset
|
222 "When done with a buffer, type \\[server-edit]"))))))) |
|
10281
44d98e169823
(server-process-filter): Process each line separately.
Richard M. Stallman <rms@gnu.org>
parents:
10218
diff
changeset
|
223 ;; Save for later any partial line that remains. |
|
44d98e169823
(server-process-filter): Process each line separately.
Richard M. Stallman <rms@gnu.org>
parents:
10218
diff
changeset
|
224 (setq server-previous-string string)) |
| 50 | 225 |
| 226 (defun server-visit-files (files client) | |
| 227 "Finds FILES and returns the list CLIENT with the buffers nconc'd. | |
| 228 FILES is an alist whose elements are (FILENAME LINENUMBER)." | |
|
7736
8c8410bc0f1b
(server-visit-files): Bind last-nonmenu-event.
Richard M. Stallman <rms@gnu.org>
parents:
7597
diff
changeset
|
229 ;; Bind last-nonmenu-event to force use of keyboard, not mouse, for queries. |
|
8c8410bc0f1b
(server-visit-files): Bind last-nonmenu-event.
Richard M. Stallman <rms@gnu.org>
parents:
7597
diff
changeset
|
230 (let (client-record (last-nonmenu-event t) (obuf (current-buffer))) |
|
4500
56d7c4beae9f
(server-visit-files): Restore current-buffer by hand,
Richard M. Stallman <rms@gnu.org>
parents:
4096
diff
changeset
|
231 ;; Restore the current buffer afterward, but not using save-excursion, |
|
56d7c4beae9f
(server-visit-files): Restore current-buffer by hand,
Richard M. Stallman <rms@gnu.org>
parents:
4096
diff
changeset
|
232 ;; because we don't want to save point in this buffer |
|
56d7c4beae9f
(server-visit-files): Restore current-buffer by hand,
Richard M. Stallman <rms@gnu.org>
parents:
4096
diff
changeset
|
233 ;; if it happens to be one of those specified by the server. |
|
56d7c4beae9f
(server-visit-files): Restore current-buffer by hand,
Richard M. Stallman <rms@gnu.org>
parents:
4096
diff
changeset
|
234 (unwind-protect |
|
56d7c4beae9f
(server-visit-files): Restore current-buffer by hand,
Richard M. Stallman <rms@gnu.org>
parents:
4096
diff
changeset
|
235 (while files |
|
56d7c4beae9f
(server-visit-files): Restore current-buffer by hand,
Richard M. Stallman <rms@gnu.org>
parents:
4096
diff
changeset
|
236 ;; If there is an existing buffer modified or the file is modified, |
|
56d7c4beae9f
(server-visit-files): Restore current-buffer by hand,
Richard M. Stallman <rms@gnu.org>
parents:
4096
diff
changeset
|
237 ;; revert it. |
|
56d7c4beae9f
(server-visit-files): Restore current-buffer by hand,
Richard M. Stallman <rms@gnu.org>
parents:
4096
diff
changeset
|
238 ;; If there is an existing buffer with deleted file, offer to write it. |
|
56d7c4beae9f
(server-visit-files): Restore current-buffer by hand,
Richard M. Stallman <rms@gnu.org>
parents:
4096
diff
changeset
|
239 (let* ((filen (car (car files))) |
|
56d7c4beae9f
(server-visit-files): Restore current-buffer by hand,
Richard M. Stallman <rms@gnu.org>
parents:
4096
diff
changeset
|
240 (obuf (get-file-buffer filen))) |
|
56d7c4beae9f
(server-visit-files): Restore current-buffer by hand,
Richard M. Stallman <rms@gnu.org>
parents:
4096
diff
changeset
|
241 (if (and obuf (set-buffer obuf)) |
|
56d7c4beae9f
(server-visit-files): Restore current-buffer by hand,
Richard M. Stallman <rms@gnu.org>
parents:
4096
diff
changeset
|
242 (if (file-exists-p filen) |
|
56d7c4beae9f
(server-visit-files): Restore current-buffer by hand,
Richard M. Stallman <rms@gnu.org>
parents:
4096
diff
changeset
|
243 (if (or (not (verify-visited-file-modtime obuf)) |
|
56d7c4beae9f
(server-visit-files): Restore current-buffer by hand,
Richard M. Stallman <rms@gnu.org>
parents:
4096
diff
changeset
|
244 (buffer-modified-p obuf)) |
|
56d7c4beae9f
(server-visit-files): Restore current-buffer by hand,
Richard M. Stallman <rms@gnu.org>
parents:
4096
diff
changeset
|
245 (revert-buffer t nil)) |
|
56d7c4beae9f
(server-visit-files): Restore current-buffer by hand,
Richard M. Stallman <rms@gnu.org>
parents:
4096
diff
changeset
|
246 (if (y-or-n-p |
|
56d7c4beae9f
(server-visit-files): Restore current-buffer by hand,
Richard M. Stallman <rms@gnu.org>
parents:
4096
diff
changeset
|
247 (concat "File no longer exists: " |
|
56d7c4beae9f
(server-visit-files): Restore current-buffer by hand,
Richard M. Stallman <rms@gnu.org>
parents:
4096
diff
changeset
|
248 filen |
|
56d7c4beae9f
(server-visit-files): Restore current-buffer by hand,
Richard M. Stallman <rms@gnu.org>
parents:
4096
diff
changeset
|
249 ", write buffer to file? ")) |
|
56d7c4beae9f
(server-visit-files): Restore current-buffer by hand,
Richard M. Stallman <rms@gnu.org>
parents:
4096
diff
changeset
|
250 (write-file filen))) |
|
56d7c4beae9f
(server-visit-files): Restore current-buffer by hand,
Richard M. Stallman <rms@gnu.org>
parents:
4096
diff
changeset
|
251 (set-buffer (find-file-noselect filen)) |
|
56d7c4beae9f
(server-visit-files): Restore current-buffer by hand,
Richard M. Stallman <rms@gnu.org>
parents:
4096
diff
changeset
|
252 (run-hooks 'server-visit-hook))) |
|
56d7c4beae9f
(server-visit-files): Restore current-buffer by hand,
Richard M. Stallman <rms@gnu.org>
parents:
4096
diff
changeset
|
253 (goto-line (nth 1 (car files))) |
|
56d7c4beae9f
(server-visit-files): Restore current-buffer by hand,
Richard M. Stallman <rms@gnu.org>
parents:
4096
diff
changeset
|
254 (setq server-buffer-clients (cons (car client) server-buffer-clients)) |
|
56d7c4beae9f
(server-visit-files): Restore current-buffer by hand,
Richard M. Stallman <rms@gnu.org>
parents:
4096
diff
changeset
|
255 (setq client-record (cons (current-buffer) client-record)) |
|
56d7c4beae9f
(server-visit-files): Restore current-buffer by hand,
Richard M. Stallman <rms@gnu.org>
parents:
4096
diff
changeset
|
256 (setq files (cdr files))) |
|
56d7c4beae9f
(server-visit-files): Restore current-buffer by hand,
Richard M. Stallman <rms@gnu.org>
parents:
4096
diff
changeset
|
257 (set-buffer obuf)) |
| 50 | 258 (nconc client client-record))) |
| 259 | |
| 260 (defun server-buffer-done (buffer) | |
| 261 "Mark BUFFER as \"done\" for its client(s). | |
|
10961
88cba63f2a9b
(server-buffer-done): Return a list
Richard M. Stallman <rms@gnu.org>
parents:
10281
diff
changeset
|
262 This buries the buffer, then returns a list of the form (NEXT-BUFFER KILLED). |
|
88cba63f2a9b
(server-buffer-done): Return a list
Richard M. Stallman <rms@gnu.org>
parents:
10281
diff
changeset
|
263 NEXT-BUFFER is another server buffer, as a suggestion for what to select next, |
|
88cba63f2a9b
(server-buffer-done): Return a list
Richard M. Stallman <rms@gnu.org>
parents:
10281
diff
changeset
|
264 or nil. KILLED is t if we killed BUFFER (because it was a temp file)." |
| 50 | 265 (let ((running (eq (process-status server-process) 'run)) |
| 266 (next-buffer nil) | |
|
10961
88cba63f2a9b
(server-buffer-done): Return a list
Richard M. Stallman <rms@gnu.org>
parents:
10281
diff
changeset
|
267 (killed nil) |
|
12822
6fb78108d62d
(server-buffer-done): Pause between client commands,
Richard M. Stallman <rms@gnu.org>
parents:
12411
diff
changeset
|
268 (first t) |
| 50 | 269 (old-clients server-clients)) |
| 270 (while old-clients | |
| 271 (let ((client (car old-clients))) | |
| 272 (or next-buffer | |
| 273 (setq next-buffer (nth 1 (memq buffer client)))) | |
| 274 (delq buffer client) | |
|
10281
44d98e169823
(server-process-filter): Process each line separately.
Richard M. Stallman <rms@gnu.org>
parents:
10218
diff
changeset
|
275 ;; Delete all dead buffers from CLIENT. |
|
44d98e169823
(server-process-filter): Process each line separately.
Richard M. Stallman <rms@gnu.org>
parents:
10218
diff
changeset
|
276 (let ((tail client)) |
|
44d98e169823
(server-process-filter): Process each line separately.
Richard M. Stallman <rms@gnu.org>
parents:
10218
diff
changeset
|
277 (while tail |
|
44d98e169823
(server-process-filter): Process each line separately.
Richard M. Stallman <rms@gnu.org>
parents:
10218
diff
changeset
|
278 (and (bufferp (car tail)) |
|
44d98e169823
(server-process-filter): Process each line separately.
Richard M. Stallman <rms@gnu.org>
parents:
10218
diff
changeset
|
279 (null (buffer-name (car tail))) |
|
44d98e169823
(server-process-filter): Process each line separately.
Richard M. Stallman <rms@gnu.org>
parents:
10218
diff
changeset
|
280 (delq (car tail) client)) |
|
44d98e169823
(server-process-filter): Process each line separately.
Richard M. Stallman <rms@gnu.org>
parents:
10218
diff
changeset
|
281 (setq tail (cdr tail)))) |
| 50 | 282 ;; If client now has no pending buffers, |
| 283 ;; tell it that it is done, and forget it entirely. | |
| 284 (if (cdr client) nil | |
| 285 (if running | |
| 286 (progn | |
|
12822
6fb78108d62d
(server-buffer-done): Pause between client commands,
Richard M. Stallman <rms@gnu.org>
parents:
12411
diff
changeset
|
287 ;; Don't send emacsserver two commands in close succession. |
|
6fb78108d62d
(server-buffer-done): Pause between client commands,
Richard M. Stallman <rms@gnu.org>
parents:
12411
diff
changeset
|
288 ;; It cannot handle that. |
|
6fb78108d62d
(server-buffer-done): Pause between client commands,
Richard M. Stallman <rms@gnu.org>
parents:
12411
diff
changeset
|
289 (or first (sit-for 1)) |
|
6fb78108d62d
(server-buffer-done): Pause between client commands,
Richard M. Stallman <rms@gnu.org>
parents:
12411
diff
changeset
|
290 (setq first nil) |
| 50 | 291 (send-string server-process |
| 292 (format "Close: %s Done\n" (car client))) | |
|
12822
6fb78108d62d
(server-buffer-done): Pause between client commands,
Richard M. Stallman <rms@gnu.org>
parents:
12411
diff
changeset
|
293 (server-log (format "Close: %s Done\n" (car client))))) |
| 50 | 294 (setq server-clients (delq client server-clients)))) |
| 295 (setq old-clients (cdr old-clients))) | |
|
10281
44d98e169823
(server-process-filter): Process each line separately.
Richard M. Stallman <rms@gnu.org>
parents:
10218
diff
changeset
|
296 (if (and (bufferp buffer) (buffer-name buffer)) |
|
6176
1dbec303c87b
(kill-emacs-query-functions, kill-buffer-query-functions):
Richard M. Stallman <rms@gnu.org>
parents:
5749
diff
changeset
|
297 (progn |
|
1dbec303c87b
(kill-emacs-query-functions, kill-buffer-query-functions):
Richard M. Stallman <rms@gnu.org>
parents:
5749
diff
changeset
|
298 (save-excursion |
|
1dbec303c87b
(kill-emacs-query-functions, kill-buffer-query-functions):
Richard M. Stallman <rms@gnu.org>
parents:
5749
diff
changeset
|
299 (set-buffer buffer) |
|
7597
99a600c67e82
(server-done-hook): New hook.
Richard M. Stallman <rms@gnu.org>
parents:
7553
diff
changeset
|
300 (setq server-buffer-clients nil) |
|
99a600c67e82
(server-done-hook): New hook.
Richard M. Stallman <rms@gnu.org>
parents:
7553
diff
changeset
|
301 (run-hooks 'server-done-hook)) |
|
7553
e473c5ad9e7d
(server-done): Never kill buffer here.
Richard M. Stallman <rms@gnu.org>
parents:
7300
diff
changeset
|
302 (if (server-temp-file-p buffer) |
|
10961
88cba63f2a9b
(server-buffer-done): Return a list
Richard M. Stallman <rms@gnu.org>
parents:
10281
diff
changeset
|
303 (progn (kill-buffer buffer) |
|
88cba63f2a9b
(server-buffer-done): Return a list
Richard M. Stallman <rms@gnu.org>
parents:
10281
diff
changeset
|
304 (setq killed t)) |
|
7553
e473c5ad9e7d
(server-done): Never kill buffer here.
Richard M. Stallman <rms@gnu.org>
parents:
7300
diff
changeset
|
305 (bury-buffer buffer)))) |
|
10961
88cba63f2a9b
(server-buffer-done): Return a list
Richard M. Stallman <rms@gnu.org>
parents:
10281
diff
changeset
|
306 (list next-buffer killed))) |
| 50 | 307 |
| 308 (defun server-temp-file-p (buffer) | |
| 309 "Return non-nil if BUFFER contains a file considered temporary. | |
| 310 These are files whose names suggest they are repeatedly | |
| 311 reused to pass information to another program. | |
| 312 | |
| 313 The variable `server-temp-file-regexp' controls which filenames | |
| 314 are considered temporary." | |
| 315 (and (buffer-file-name buffer) | |
| 316 (string-match server-temp-file-regexp (buffer-file-name buffer)))) | |
| 317 | |
| 318 (defun server-done () | |
| 1540 | 319 "Offer to save current buffer, mark it as \"done\" for clients. |
|
10961
88cba63f2a9b
(server-buffer-done): Return a list
Richard M. Stallman <rms@gnu.org>
parents:
10281
diff
changeset
|
320 This buries the buffer, then returns a list of the form (NEXT-BUFFER KILLED). |
|
88cba63f2a9b
(server-buffer-done): Return a list
Richard M. Stallman <rms@gnu.org>
parents:
10281
diff
changeset
|
321 NEXT-BUFFER is another server buffer, as a suggestion for what to select next, |
|
88cba63f2a9b
(server-buffer-done): Return a list
Richard M. Stallman <rms@gnu.org>
parents:
10281
diff
changeset
|
322 or nil. KILLED is t if we killed the BUFFER (because it was a temp file)." |
| 50 | 323 (let ((buffer (current-buffer))) |
| 324 (if server-buffer-clients | |
|
7553
e473c5ad9e7d
(server-done): Never kill buffer here.
Richard M. Stallman <rms@gnu.org>
parents:
7300
diff
changeset
|
325 (progn |
| 50 | 326 (if (server-temp-file-p buffer) |
|
4096
badd80e9e4fc
(server-done): Let save-buffer make the backup,
Richard M. Stallman <rms@gnu.org>
parents:
3746
diff
changeset
|
327 ;; For a temp file, save, and do make a non-numeric backup |
|
badd80e9e4fc
(server-done): Let save-buffer make the backup,
Richard M. Stallman <rms@gnu.org>
parents:
3746
diff
changeset
|
328 ;; (unless make-backup-files is nil). |
|
badd80e9e4fc
(server-done): Let save-buffer make the backup,
Richard M. Stallman <rms@gnu.org>
parents:
3746
diff
changeset
|
329 (let ((version-control nil) |
|
badd80e9e4fc
(server-done): Let save-buffer make the backup,
Richard M. Stallman <rms@gnu.org>
parents:
3746
diff
changeset
|
330 (buffer-backed-up nil)) |
|
7553
e473c5ad9e7d
(server-done): Never kill buffer here.
Richard M. Stallman <rms@gnu.org>
parents:
7300
diff
changeset
|
331 (save-buffer)) |
| 50 | 332 (if (and (buffer-modified-p) |
| 333 (y-or-n-p (concat "Save file " buffer-file-name "? "))) | |
| 334 (save-buffer buffer))) | |
|
7553
e473c5ad9e7d
(server-done): Never kill buffer here.
Richard M. Stallman <rms@gnu.org>
parents:
7300
diff
changeset
|
335 (server-buffer-done buffer))))) |
|
6176
1dbec303c87b
(kill-emacs-query-functions, kill-buffer-query-functions):
Richard M. Stallman <rms@gnu.org>
parents:
5749
diff
changeset
|
336 |
| 9883 | 337 ;; Ask before killing a server buffer. |
| 338 ;; It was suggested to release its client instead, | |
| 339 ;; but I think that is dangerous--the client would proceed | |
| 340 ;; using whatever is on disk in that file. -- rms. | |
|
6993
0983fe01e614
(server-kill-emacs-query-function)
Richard M. Stallman <rms@gnu.org>
parents:
6960
diff
changeset
|
341 (defun server-kill-buffer-query-function () |
|
0983fe01e614
(server-kill-emacs-query-function)
Richard M. Stallman <rms@gnu.org>
parents:
6960
diff
changeset
|
342 (or (not server-buffer-clients) |
|
0983fe01e614
(server-kill-emacs-query-function)
Richard M. Stallman <rms@gnu.org>
parents:
6960
diff
changeset
|
343 (yes-or-no-p (format "Buffer `%s' still has clients; kill it? " |
|
0983fe01e614
(server-kill-emacs-query-function)
Richard M. Stallman <rms@gnu.org>
parents:
6960
diff
changeset
|
344 (buffer-name (current-buffer)))))) |
|
0983fe01e614
(server-kill-emacs-query-function)
Richard M. Stallman <rms@gnu.org>
parents:
6960
diff
changeset
|
345 |
|
6176
1dbec303c87b
(kill-emacs-query-functions, kill-buffer-query-functions):
Richard M. Stallman <rms@gnu.org>
parents:
5749
diff
changeset
|
346 (add-hook 'kill-buffer-query-functions |
|
6993
0983fe01e614
(server-kill-emacs-query-function)
Richard M. Stallman <rms@gnu.org>
parents:
6960
diff
changeset
|
347 'server-kill-buffer-query-function) |
|
6176
1dbec303c87b
(kill-emacs-query-functions, kill-buffer-query-functions):
Richard M. Stallman <rms@gnu.org>
parents:
5749
diff
changeset
|
348 |
|
6993
0983fe01e614
(server-kill-emacs-query-function)
Richard M. Stallman <rms@gnu.org>
parents:
6960
diff
changeset
|
349 (defun server-kill-emacs-query-function () |
|
7736
8c8410bc0f1b
(server-visit-files): Bind last-nonmenu-event.
Richard M. Stallman <rms@gnu.org>
parents:
7597
diff
changeset
|
350 (let (live-client |
|
8c8410bc0f1b
(server-visit-files): Bind last-nonmenu-event.
Richard M. Stallman <rms@gnu.org>
parents:
7597
diff
changeset
|
351 (tail server-clients)) |
|
8c8410bc0f1b
(server-visit-files): Bind last-nonmenu-event.
Richard M. Stallman <rms@gnu.org>
parents:
7597
diff
changeset
|
352 ;; See if any clients have any buffers that are still alive. |
|
8c8410bc0f1b
(server-visit-files): Bind last-nonmenu-event.
Richard M. Stallman <rms@gnu.org>
parents:
7597
diff
changeset
|
353 (while tail |
|
8c8410bc0f1b
(server-visit-files): Bind last-nonmenu-event.
Richard M. Stallman <rms@gnu.org>
parents:
7597
diff
changeset
|
354 (if (memq t (mapcar 'stringp (mapcar 'buffer-name (cdr (car tail))))) |
|
8c8410bc0f1b
(server-visit-files): Bind last-nonmenu-event.
Richard M. Stallman <rms@gnu.org>
parents:
7597
diff
changeset
|
355 (setq live-client t)) |
|
8c8410bc0f1b
(server-visit-files): Bind last-nonmenu-event.
Richard M. Stallman <rms@gnu.org>
parents:
7597
diff
changeset
|
356 (setq tail (cdr tail))) |
|
8c8410bc0f1b
(server-visit-files): Bind last-nonmenu-event.
Richard M. Stallman <rms@gnu.org>
parents:
7597
diff
changeset
|
357 (or (not live-client) |
|
8c8410bc0f1b
(server-visit-files): Bind last-nonmenu-event.
Richard M. Stallman <rms@gnu.org>
parents:
7597
diff
changeset
|
358 (yes-or-no-p "Server buffers still have clients; exit anyway? ")))) |
|
6993
0983fe01e614
(server-kill-emacs-query-function)
Richard M. Stallman <rms@gnu.org>
parents:
6960
diff
changeset
|
359 |
|
0983fe01e614
(server-kill-emacs-query-function)
Richard M. Stallman <rms@gnu.org>
parents:
6960
diff
changeset
|
360 (add-hook 'kill-emacs-query-functions 'server-kill-emacs-query-function) |
| 50 | 361 |
| 362 (defun server-edit (&optional arg) | |
| 363 "Switch to next server editing buffer; say \"Done\" for current buffer. | |
| 364 If a server buffer is current, it is marked \"done\" and optionally saved. | |
| 365 When all of a client's buffers are marked as \"done\", the client is notified. | |
| 366 | |
| 367 Temporary files such as MH <draft> files are always saved and backed up, | |
|
4096
badd80e9e4fc
(server-done): Let save-buffer make the backup,
Richard M. Stallman <rms@gnu.org>
parents:
3746
diff
changeset
|
368 no questions asked. (The variable `make-backup-files', if nil, still |
|
badd80e9e4fc
(server-done): Let save-buffer make the backup,
Richard M. Stallman <rms@gnu.org>
parents:
3746
diff
changeset
|
369 inhibits a backup; you can set it locally in a particular buffer to |
|
badd80e9e4fc
(server-done): Let save-buffer make the backup,
Richard M. Stallman <rms@gnu.org>
parents:
3746
diff
changeset
|
370 prevent a backup for it.) The variable `server-temp-file-regexp' controls |
| 50 | 371 which filenames are considered temporary. |
| 372 | |
| 373 If invoked with a prefix argument, or if there is no server process running, | |
| 374 starts server process and that is all. Invoked by \\[server-edit]." | |
| 375 (interactive "P") | |
| 376 (if (or arg | |
| 377 (not server-process) | |
| 378 (memq (process-status server-process) '(signal exit))) | |
| 379 (server-start nil) | |
|
10961
88cba63f2a9b
(server-buffer-done): Return a list
Richard M. Stallman <rms@gnu.org>
parents:
10281
diff
changeset
|
380 (apply 'server-switch-buffer (server-done)))) |
| 50 | 381 |
|
11329
ecbfde696360
(server-switch-buffer): Make first arg optional too;
Roland McGrath <roland@gnu.org>
parents:
11235
diff
changeset
|
382 (defun server-switch-buffer (&optional next-buffer killed-one) |
| 50 | 383 "Switch to another buffer, preferably one that has a client. |
| 384 Arg NEXT-BUFFER is a suggestion; if it is a live buffer, use it." | |
|
10961
88cba63f2a9b
(server-buffer-done): Return a list
Richard M. Stallman <rms@gnu.org>
parents:
10281
diff
changeset
|
385 ;; KILLED-ONE is t in a recursive call |
|
88cba63f2a9b
(server-buffer-done): Return a list
Richard M. Stallman <rms@gnu.org>
parents:
10281
diff
changeset
|
386 ;; if we have already killed one temp-file server buffer. |
|
88cba63f2a9b
(server-buffer-done): Return a list
Richard M. Stallman <rms@gnu.org>
parents:
10281
diff
changeset
|
387 ;; This means we should avoid the final "switch to some other buffer" |
|
88cba63f2a9b
(server-buffer-done): Return a list
Richard M. Stallman <rms@gnu.org>
parents:
10281
diff
changeset
|
388 ;; since we've already effectively done that. |
|
10218
b78b8c445f33
(server-switch-buffer): Cope with dead frames and windows.
Richard M. Stallman <rms@gnu.org>
parents:
9883
diff
changeset
|
389 (cond ((and (windowp server-window) |
|
b78b8c445f33
(server-switch-buffer): Cope with dead frames and windows.
Richard M. Stallman <rms@gnu.org>
parents:
9883
diff
changeset
|
390 (window-live-p server-window)) |
|
3661
65d530f613a8
(server-window): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
2866
diff
changeset
|
391 (select-window server-window)) |
|
65d530f613a8
(server-window): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
2866
diff
changeset
|
392 ((framep server-window) |
|
10218
b78b8c445f33
(server-switch-buffer): Cope with dead frames and windows.
Richard M. Stallman <rms@gnu.org>
parents:
9883
diff
changeset
|
393 (if (not (frame-live-p server-window)) |
|
b78b8c445f33
(server-switch-buffer): Cope with dead frames and windows.
Richard M. Stallman <rms@gnu.org>
parents:
9883
diff
changeset
|
394 (setq server-window (make-frame))) |
|
3661
65d530f613a8
(server-window): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
2866
diff
changeset
|
395 (select-window (frame-selected-window server-window)))) |
|
6182
472277144da6
(server-switch-buffer): Don't select a minibuffer.
Karl Heuer <kwzh@gnu.org>
parents:
6176
diff
changeset
|
396 (if (window-minibuffer-p (selected-window)) |
|
9252
8c659649649e
(server-switch-buffer): Don't go to an invisible frame.
Richard M. Stallman <rms@gnu.org>
parents:
8733
diff
changeset
|
397 (select-window (next-window nil 'nomini 0))) |
|
8c659649649e
(server-switch-buffer): Don't go to an invisible frame.
Richard M. Stallman <rms@gnu.org>
parents:
8733
diff
changeset
|
398 ;; Move to a non-dedicated window, if we have one. |
|
8c659649649e
(server-switch-buffer): Don't go to an invisible frame.
Richard M. Stallman <rms@gnu.org>
parents:
8733
diff
changeset
|
399 (let ((last-window (previous-window nil 'nomini 0))) |
|
8c659649649e
(server-switch-buffer): Don't go to an invisible frame.
Richard M. Stallman <rms@gnu.org>
parents:
8733
diff
changeset
|
400 (while (and (window-dedicated-p (selected-window)) |
|
8c659649649e
(server-switch-buffer): Don't go to an invisible frame.
Richard M. Stallman <rms@gnu.org>
parents:
8733
diff
changeset
|
401 (not (eq last-window (selected-window)))) |
|
8c659649649e
(server-switch-buffer): Don't go to an invisible frame.
Richard M. Stallman <rms@gnu.org>
parents:
8733
diff
changeset
|
402 (select-window (next-window nil 'nomini 0)))) |
|
8c659649649e
(server-switch-buffer): Don't go to an invisible frame.
Richard M. Stallman <rms@gnu.org>
parents:
8733
diff
changeset
|
403 (set-window-dedicated-p (selected-window) nil) |
| 50 | 404 (if next-buffer |
| 405 (if (and (bufferp next-buffer) | |
| 406 (buffer-name next-buffer)) | |
| 407 (switch-to-buffer next-buffer) | |
| 408 ;; If NEXT-BUFFER is a dead buffer, | |
| 409 ;; remove the server records for it | |
| 410 ;; and try the next surviving server buffer. | |
|
10961
88cba63f2a9b
(server-buffer-done): Return a list
Richard M. Stallman <rms@gnu.org>
parents:
10281
diff
changeset
|
411 (apply 'server-switch-buffer |
|
88cba63f2a9b
(server-buffer-done): Return a list
Richard M. Stallman <rms@gnu.org>
parents:
10281
diff
changeset
|
412 (server-buffer-done next-buffer))) |
| 50 | 413 (if server-clients |
|
10961
88cba63f2a9b
(server-buffer-done): Return a list
Richard M. Stallman <rms@gnu.org>
parents:
10281
diff
changeset
|
414 (server-switch-buffer (nth 1 (car server-clients)) killed-one) |
|
88cba63f2a9b
(server-buffer-done): Return a list
Richard M. Stallman <rms@gnu.org>
parents:
10281
diff
changeset
|
415 (if (not killed-one) |
|
88cba63f2a9b
(server-buffer-done): Return a list
Richard M. Stallman <rms@gnu.org>
parents:
10281
diff
changeset
|
416 (switch-to-buffer (other-buffer)))))) |
| 50 | 417 |
| 418 (global-set-key "\C-x#" 'server-edit) | |
| 1079 | 419 |
| 420 (provide 'server) | |
|
658
7cbd4fcd8b0f
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
445
diff
changeset
|
421 |
|
7cbd4fcd8b0f
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
445
diff
changeset
|
422 ;;; server.el ends here |
