Mercurial > emacs
annotate lisp/server.el @ 8163:d836abb05e48
(mkdir, removenullpaths): Put g in sed replace commands.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Thu, 07 Jul 1994 02:44:58 +0000 |
parents | 69ec123ef310 |
children | 80350a95921a |
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 |
7300 | 3 ;; Copyright (C) 1986, 1987, 1992, 1994 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 | |
23 ;; along with GNU Emacs; see the file COPYING. If not, write to | |
24 ;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. | |
25 | |
787
3cece0106722
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
702
diff
changeset
|
26 ;;; Commentary: |
50 | 27 |
28 ;;; This Lisp code is run in Emacs when it is to operate as | |
29 ;;; a server for other processes. | |
30 | |
31 ;;; Load this library and do M-x server-edit to enable Emacs as a server. | |
445 | 32 ;;; Emacs runs the program ../arch-lib/emacsserver as a subprocess |
50 | 33 ;;; for communication with clients. If there are no client buffers to edit, |
34 ;;; server-edit acts like (switch-to-buffer (other-buffer)) | |
35 | |
36 ;;; When some other program runs "the editor" to edit a file, | |
445 | 37 ;;; "the editor" can be the Emacs client program ../lib-src/emacsclient. |
50 | 38 ;;; This program transmits the file names to Emacs through |
39 ;;; the server subprocess, and Emacs visits them and lets you edit them. | |
40 | |
41 ;;; Note that any number of clients may dispatch files to emacs to be edited. | |
42 | |
43 ;;; When you finish editing a Server buffer, again call server-edit | |
44 ;;; to mark that buffer as done for the client and switch to the next | |
45 ;;; Server buffer. When all the buffers for a client have been edited | |
46 ;;; and exited with server-edit, the client "editor" will return | |
47 ;;; to the program that invoked it. | |
48 | |
49 ;;; Your editing commands and Emacs's display output go to and from | |
50 ;;; the terminal in the usual way. Thus, server operation is possible | |
51 ;;; only when Emacs can talk to the terminal at the time you invoke | |
52 ;;; the client. This is possible in four cases: | |
53 | |
54 ;;; 1. On a window system, where Emacs runs in one window and the | |
55 ;;; program that wants to use "the editor" runs in another. | |
56 | |
57 ;;; 2. On a multi-terminal system, where Emacs runs on one terminal and the | |
58 ;;; program that wants to use "the editor" runs on another. | |
59 | |
60 ;;; 3. When the program that wants to use "the editor" is running | |
61 ;;; as a subprocess of Emacs. | |
62 | |
63 ;;; 4. On a system with job control, when Emacs is suspended, the program | |
64 ;;; that wants to use "the editor" will stop and display | |
65 ;;; "Waiting for Emacs...". It can then be suspended, and Emacs can be | |
66 ;;; brought into the foreground for editing. When done editing, Emacs is | |
67 ;;; suspended again, and the client program is brought into the foreground. | |
68 | |
69 ;;; The buffer local variable "server-buffer-clients" lists | |
70 ;;; the clients who are waiting for this buffer to be edited. | |
71 ;;; The global variable "server-clients" lists all the waiting clients, | |
72 ;;; 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
|
73 |
3cece0106722
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
702
diff
changeset
|
74 ;;; Code: |
50 | 75 |
6176
1dbec303c87b
(kill-emacs-query-functions, kill-buffer-query-functions):
Richard M. Stallman <rms@gnu.org>
parents:
5749
diff
changeset
|
76 (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
|
77 "*The program to use as the edit server.") |
50 | 78 |
79 (defvar server-visit-hook nil | |
2866
48ddb3600ae6
* server.el (server-switch-hook): New hook.
Jim Blandy <jimb@redhat.com>
parents:
1540
diff
changeset
|
80 "*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
|
81 |
48ddb3600ae6
* server.el (server-switch-hook): New hook.
Jim Blandy <jimb@redhat.com>
parents:
1540
diff
changeset
|
82 (defvar server-switch-hook nil |
50 | 83 "*List of hooks to call when switching to a buffer for the Emacs server.") |
84 | |
7597
99a600c67e82
(server-done-hook): New hook.
Richard M. Stallman <rms@gnu.org>
parents:
7553
diff
changeset
|
85 (defvar server-done-hook nil |
99a600c67e82
(server-done-hook): New hook.
Richard M. Stallman <rms@gnu.org>
parents:
7553
diff
changeset
|
86 "*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
|
87 |
50 | 88 (defvar server-process nil |
89 "the current server process") | |
90 | |
138 | 91 (defvar server-previous-string "") |
92 | |
50 | 93 (defvar server-clients nil |
94 "List of current server clients. | |
7736
8c8410bc0f1b
(server-visit-files): Bind last-nonmenu-event.
Richard M. Stallman <rms@gnu.org>
parents:
7597
diff
changeset
|
95 Each element is (CLIENTID BUFFERS...) where CLIENTID is a string |
50 | 96 that can be given to the server process to identify a client. |
97 When a buffer is marked as \"done\", it is removed from this list.") | |
98 | |
99 (defvar server-buffer-clients nil | |
100 "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
|
101 (make-variable-buffer-local 'server-buffer-clients) |
50 | 102 ;; Changing major modes should not erase this local. |
103 (put 'server-buffer-clients 'permanent-local t) | |
104 | |
3661
65d530f613a8
(server-window): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
2866
diff
changeset
|
105 (defvar server-window nil |
65d530f613a8
(server-window): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
2866
diff
changeset
|
106 "*The window to use for selecting Emacs server buffers. |
65d530f613a8
(server-window): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
2866
diff
changeset
|
107 If nil, use the selected window. |
65d530f613a8
(server-window): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
2866
diff
changeset
|
108 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
|
109 |
50 | 110 (defvar server-temp-file-regexp "^/tmp/Re\\|/draft$" |
111 "*Regexp which should match filenames of temporary files | |
112 which are deleted and reused after each edit | |
113 by the programs that invoke the emacs server.") | |
114 | |
115 (or (assq 'server-buffer-clients minor-mode-alist) | |
116 (setq minor-mode-alist (cons '(server-buffer-clients " Server") minor-mode-alist))) | |
117 | |
118 ;; If a *server* buffer exists, | |
119 ;; write STRING to it for logging purposes. | |
120 (defun server-log (string) | |
121 (if (get-buffer "*server*") | |
122 (save-excursion | |
123 (set-buffer "*server*") | |
124 (goto-char (point-max)) | |
125 (insert string) | |
126 (or (bobp) (newline))))) | |
127 | |
128 (defun server-sentinel (proc msg) | |
129 (cond ((eq (process-status proc) 'exit) | |
130 (server-log (message "Server subprocess exited"))) | |
131 ((eq (process-status proc) 'signal) | |
132 (server-log (message "Server subprocess killed"))))) | |
133 | |
256 | 134 ;;;###autoload |
50 | 135 (defun server-start (&optional leave-dead) |
136 "Allow this Emacs process to be a server for client processes. | |
137 This starts a server communications subprocess through which | |
138 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
|
139 To use the server, set up the program `emacsclient' in the |
50 | 140 Emacs distribution as your standard \"editor\". |
141 | |
142 Prefix arg means just kill any existing server communications subprocess." | |
143 (interactive "P") | |
144 ;; kill it dead! | |
145 (if server-process | |
146 (progn | |
147 (set-process-sentinel server-process nil) | |
148 (condition-case () (delete-process server-process) (error nil)))) | |
149 (condition-case () (delete-file "~/.emacs_server") (error nil)) | |
150 ;; If we already had a server, clear out associated status. | |
151 (while server-clients | |
152 (let ((buffer (nth 1 (car server-clients)))) | |
153 (server-buffer-done buffer))) | |
154 (if leave-dead | |
155 nil | |
156 (if server-process | |
157 (server-log (message "Restarting server"))) | |
158 (setq server-process (start-process "server" nil server-program)) | |
159 (set-process-sentinel server-process 'server-sentinel) | |
160 (set-process-filter server-process 'server-process-filter) | |
161 (process-kill-without-query server-process))) | |
162 | |
163 ;Process a request from the server to edit some files. | |
164 ;Format of STRING is "Client: CLIENTID PATH PATH PATH... \n" | |
165 (defun server-process-filter (proc string) | |
166 (server-log string) | |
138 | 167 (setq string (concat server-previous-string string)) |
168 (if (not (and (eq ?\n (aref string (1- (length string)))) | |
169 (eq 0 (string-match "Client: " string)))) | |
170 ;; If input is not complete, save it for later. | |
171 (setq server-previous-string string) | |
172 ;; If it is complete, process it now, and discard what was saved. | |
50 | 173 (setq string (substring string (match-end 0))) |
138 | 174 (setq server-previous-string "") |
50 | 175 (let ((client (list (substring string 0 (string-match " " string)))) |
176 (files nil) | |
177 (lineno 1)) | |
178 (setq string (substring string (match-end 0))) | |
179 (while (string-match "[^ ]+ " string) | |
180 (let ((arg | |
181 (substring string (match-beginning 0) (1- (match-end 0))))) | |
182 (setq string (substring string (match-end 0))) | |
183 (if (string-match "\\`\\+[0-9]+\\'" arg) | |
184 (setq lineno (read (substring arg 1))) | |
185 (setq files | |
186 (cons (list arg lineno) | |
187 files)) | |
188 (setq lineno 1)))) | |
189 (server-visit-files files client) | |
190 ;; CLIENT is now a list (CLIENTNUM BUFFERS...) | |
191 (setq server-clients (cons client server-clients)) | |
3746
4a96c64c4d5e
(server-process-filter): Use server-switch-buffer.
Richard M. Stallman <rms@gnu.org>
parents:
3661
diff
changeset
|
192 (server-switch-buffer (nth 1 client)) |
2866
48ddb3600ae6
* server.el (server-switch-hook): New hook.
Jim Blandy <jimb@redhat.com>
parents:
1540
diff
changeset
|
193 (run-hooks 'server-switch-hook) |
50 | 194 (message (substitute-command-keys |
195 "When done with a buffer, type \\[server-edit]."))))) | |
196 | |
197 (defun server-visit-files (files client) | |
198 "Finds FILES and returns the list CLIENT with the buffers nconc'd. | |
199 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
|
200 ;; 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
|
201 (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
|
202 ;; 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
|
203 ;; 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
|
204 ;; 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
|
205 (unwind-protect |
56d7c4beae9f
(server-visit-files): Restore current-buffer by hand,
Richard M. Stallman <rms@gnu.org>
parents:
4096
diff
changeset
|
206 (while files |
56d7c4beae9f
(server-visit-files): Restore current-buffer by hand,
Richard M. Stallman <rms@gnu.org>
parents:
4096
diff
changeset
|
207 ;; 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
|
208 ;; revert it. |
56d7c4beae9f
(server-visit-files): Restore current-buffer by hand,
Richard M. Stallman <rms@gnu.org>
parents:
4096
diff
changeset
|
209 ;; 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
|
210 (let* ((filen (car (car files))) |
56d7c4beae9f
(server-visit-files): Restore current-buffer by hand,
Richard M. Stallman <rms@gnu.org>
parents:
4096
diff
changeset
|
211 (obuf (get-file-buffer filen))) |
56d7c4beae9f
(server-visit-files): Restore current-buffer by hand,
Richard M. Stallman <rms@gnu.org>
parents:
4096
diff
changeset
|
212 (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
|
213 (if (file-exists-p filen) |
56d7c4beae9f
(server-visit-files): Restore current-buffer by hand,
Richard M. Stallman <rms@gnu.org>
parents:
4096
diff
changeset
|
214 (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
|
215 (buffer-modified-p obuf)) |
56d7c4beae9f
(server-visit-files): Restore current-buffer by hand,
Richard M. Stallman <rms@gnu.org>
parents:
4096
diff
changeset
|
216 (revert-buffer t nil)) |
56d7c4beae9f
(server-visit-files): Restore current-buffer by hand,
Richard M. Stallman <rms@gnu.org>
parents:
4096
diff
changeset
|
217 (if (y-or-n-p |
56d7c4beae9f
(server-visit-files): Restore current-buffer by hand,
Richard M. Stallman <rms@gnu.org>
parents:
4096
diff
changeset
|
218 (concat "File no longer exists: " |
56d7c4beae9f
(server-visit-files): Restore current-buffer by hand,
Richard M. Stallman <rms@gnu.org>
parents:
4096
diff
changeset
|
219 filen |
56d7c4beae9f
(server-visit-files): Restore current-buffer by hand,
Richard M. Stallman <rms@gnu.org>
parents:
4096
diff
changeset
|
220 ", write buffer to file? ")) |
56d7c4beae9f
(server-visit-files): Restore current-buffer by hand,
Richard M. Stallman <rms@gnu.org>
parents:
4096
diff
changeset
|
221 (write-file filen))) |
56d7c4beae9f
(server-visit-files): Restore current-buffer by hand,
Richard M. Stallman <rms@gnu.org>
parents:
4096
diff
changeset
|
222 (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
|
223 (run-hooks 'server-visit-hook))) |
56d7c4beae9f
(server-visit-files): Restore current-buffer by hand,
Richard M. Stallman <rms@gnu.org>
parents:
4096
diff
changeset
|
224 (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
|
225 (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
|
226 (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
|
227 (setq files (cdr files))) |
56d7c4beae9f
(server-visit-files): Restore current-buffer by hand,
Richard M. Stallman <rms@gnu.org>
parents:
4096
diff
changeset
|
228 (set-buffer obuf)) |
50 | 229 (nconc client client-record))) |
230 | |
231 (defun server-buffer-done (buffer) | |
232 "Mark BUFFER as \"done\" for its client(s). | |
233 Buries the buffer, and returns another server buffer | |
234 as a suggestion for what to select next." | |
235 (let ((running (eq (process-status server-process) 'run)) | |
236 (next-buffer nil) | |
237 (old-clients server-clients)) | |
238 (while old-clients | |
239 (let ((client (car old-clients))) | |
240 (or next-buffer | |
241 (setq next-buffer (nth 1 (memq buffer client)))) | |
242 (delq buffer client) | |
243 ;; If client now has no pending buffers, | |
244 ;; tell it that it is done, and forget it entirely. | |
245 (if (cdr client) nil | |
246 (if running | |
247 (progn | |
248 (send-string server-process | |
249 (format "Close: %s Done\n" (car client))) | |
250 (server-log (format "Close: %s Done\n" (car client))))) | |
251 (setq server-clients (delq client server-clients)))) | |
252 (setq old-clients (cdr old-clients))) | |
253 (if (buffer-name buffer) | |
6176
1dbec303c87b
(kill-emacs-query-functions, kill-buffer-query-functions):
Richard M. Stallman <rms@gnu.org>
parents:
5749
diff
changeset
|
254 (progn |
1dbec303c87b
(kill-emacs-query-functions, kill-buffer-query-functions):
Richard M. Stallman <rms@gnu.org>
parents:
5749
diff
changeset
|
255 (save-excursion |
1dbec303c87b
(kill-emacs-query-functions, kill-buffer-query-functions):
Richard M. Stallman <rms@gnu.org>
parents:
5749
diff
changeset
|
256 (set-buffer buffer) |
7597
99a600c67e82
(server-done-hook): New hook.
Richard M. Stallman <rms@gnu.org>
parents:
7553
diff
changeset
|
257 (setq server-buffer-clients nil) |
99a600c67e82
(server-done-hook): New hook.
Richard M. Stallman <rms@gnu.org>
parents:
7553
diff
changeset
|
258 (run-hooks 'server-done-hook)) |
7553
e473c5ad9e7d
(server-done): Never kill buffer here.
Richard M. Stallman <rms@gnu.org>
parents:
7300
diff
changeset
|
259 (if (server-temp-file-p buffer) |
e473c5ad9e7d
(server-done): Never kill buffer here.
Richard M. Stallman <rms@gnu.org>
parents:
7300
diff
changeset
|
260 (kill-buffer buffer) |
e473c5ad9e7d
(server-done): Never kill buffer here.
Richard M. Stallman <rms@gnu.org>
parents:
7300
diff
changeset
|
261 (bury-buffer buffer)))) |
50 | 262 next-buffer)) |
263 | |
264 (defun server-temp-file-p (buffer) | |
265 "Return non-nil if BUFFER contains a file considered temporary. | |
266 These are files whose names suggest they are repeatedly | |
267 reused to pass information to another program. | |
268 | |
269 The variable `server-temp-file-regexp' controls which filenames | |
270 are considered temporary." | |
271 (and (buffer-file-name buffer) | |
272 (string-match server-temp-file-regexp (buffer-file-name buffer)))) | |
273 | |
274 (defun server-done () | |
1540 | 275 "Offer to save current buffer, mark it as \"done\" for clients. |
276 Then bury it, and return a suggested buffer to select next." | |
50 | 277 (let ((buffer (current-buffer))) |
278 (if server-buffer-clients | |
7553
e473c5ad9e7d
(server-done): Never kill buffer here.
Richard M. Stallman <rms@gnu.org>
parents:
7300
diff
changeset
|
279 (progn |
50 | 280 (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
|
281 ;; 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
|
282 ;; (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
|
283 (let ((version-control nil) |
badd80e9e4fc
(server-done): Let save-buffer make the backup,
Richard M. Stallman <rms@gnu.org>
parents:
3746
diff
changeset
|
284 (buffer-backed-up nil)) |
7553
e473c5ad9e7d
(server-done): Never kill buffer here.
Richard M. Stallman <rms@gnu.org>
parents:
7300
diff
changeset
|
285 (save-buffer)) |
50 | 286 (if (and (buffer-modified-p) |
287 (y-or-n-p (concat "Save file " buffer-file-name "? "))) | |
288 (save-buffer buffer))) | |
7553
e473c5ad9e7d
(server-done): Never kill buffer here.
Richard M. Stallman <rms@gnu.org>
parents:
7300
diff
changeset
|
289 (server-buffer-done buffer))))) |
6176
1dbec303c87b
(kill-emacs-query-functions, kill-buffer-query-functions):
Richard M. Stallman <rms@gnu.org>
parents:
5749
diff
changeset
|
290 |
1dbec303c87b
(kill-emacs-query-functions, kill-buffer-query-functions):
Richard M. Stallman <rms@gnu.org>
parents:
5749
diff
changeset
|
291 ;; If a server buffer is killed, release its client. |
1dbec303c87b
(kill-emacs-query-functions, kill-buffer-query-functions):
Richard M. Stallman <rms@gnu.org>
parents:
5749
diff
changeset
|
292 ;; I'm not sure this is really a good idea--do you want the client |
1dbec303c87b
(kill-emacs-query-functions, kill-buffer-query-functions):
Richard M. Stallman <rms@gnu.org>
parents:
5749
diff
changeset
|
293 ;; to proceed using whatever is on disk in that file? |
6993
0983fe01e614
(server-kill-emacs-query-function)
Richard M. Stallman <rms@gnu.org>
parents:
6960
diff
changeset
|
294 (defun server-kill-buffer-query-function () |
0983fe01e614
(server-kill-emacs-query-function)
Richard M. Stallman <rms@gnu.org>
parents:
6960
diff
changeset
|
295 (or (not server-buffer-clients) |
0983fe01e614
(server-kill-emacs-query-function)
Richard M. Stallman <rms@gnu.org>
parents:
6960
diff
changeset
|
296 (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
|
297 (buffer-name (current-buffer)))))) |
0983fe01e614
(server-kill-emacs-query-function)
Richard M. Stallman <rms@gnu.org>
parents:
6960
diff
changeset
|
298 |
6176
1dbec303c87b
(kill-emacs-query-functions, kill-buffer-query-functions):
Richard M. Stallman <rms@gnu.org>
parents:
5749
diff
changeset
|
299 (add-hook 'kill-buffer-query-functions |
6993
0983fe01e614
(server-kill-emacs-query-function)
Richard M. Stallman <rms@gnu.org>
parents:
6960
diff
changeset
|
300 '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
|
301 |
6993
0983fe01e614
(server-kill-emacs-query-function)
Richard M. Stallman <rms@gnu.org>
parents:
6960
diff
changeset
|
302 (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
|
303 (let (live-client |
8c8410bc0f1b
(server-visit-files): Bind last-nonmenu-event.
Richard M. Stallman <rms@gnu.org>
parents:
7597
diff
changeset
|
304 (tail server-clients)) |
8c8410bc0f1b
(server-visit-files): Bind last-nonmenu-event.
Richard M. Stallman <rms@gnu.org>
parents:
7597
diff
changeset
|
305 ;; 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
|
306 (while tail |
8c8410bc0f1b
(server-visit-files): Bind last-nonmenu-event.
Richard M. Stallman <rms@gnu.org>
parents:
7597
diff
changeset
|
307 (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
|
308 (setq live-client t)) |
8c8410bc0f1b
(server-visit-files): Bind last-nonmenu-event.
Richard M. Stallman <rms@gnu.org>
parents:
7597
diff
changeset
|
309 (setq tail (cdr tail))) |
8c8410bc0f1b
(server-visit-files): Bind last-nonmenu-event.
Richard M. Stallman <rms@gnu.org>
parents:
7597
diff
changeset
|
310 (or (not live-client) |
8c8410bc0f1b
(server-visit-files): Bind last-nonmenu-event.
Richard M. Stallman <rms@gnu.org>
parents:
7597
diff
changeset
|
311 (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
|
312 |
0983fe01e614
(server-kill-emacs-query-function)
Richard M. Stallman <rms@gnu.org>
parents:
6960
diff
changeset
|
313 (add-hook 'kill-emacs-query-functions 'server-kill-emacs-query-function) |
50 | 314 |
315 (defun server-edit (&optional arg) | |
316 "Switch to next server editing buffer; say \"Done\" for current buffer. | |
317 If a server buffer is current, it is marked \"done\" and optionally saved. | |
318 When all of a client's buffers are marked as \"done\", the client is notified. | |
319 | |
320 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
|
321 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
|
322 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
|
323 prevent a backup for it.) The variable `server-temp-file-regexp' controls |
50 | 324 which filenames are considered temporary. |
325 | |
326 If invoked with a prefix argument, or if there is no server process running, | |
327 starts server process and that is all. Invoked by \\[server-edit]." | |
328 | |
329 (interactive "P") | |
330 (if (or arg | |
331 (not server-process) | |
332 (memq (process-status server-process) '(signal exit))) | |
333 (server-start nil) | |
334 (server-switch-buffer (server-done)))) | |
335 | |
336 (defun server-switch-buffer (next-buffer) | |
337 "Switch to another buffer, preferably one that has a client. | |
338 Arg NEXT-BUFFER is a suggestion; if it is a live buffer, use it." | |
3661
65d530f613a8
(server-window): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
2866
diff
changeset
|
339 (cond ((windowp server-window) |
65d530f613a8
(server-window): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
2866
diff
changeset
|
340 (select-window server-window)) |
65d530f613a8
(server-window): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
2866
diff
changeset
|
341 ((framep server-window) |
65d530f613a8
(server-window): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
2866
diff
changeset
|
342 (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
|
343 (if (window-minibuffer-p (selected-window)) |
472277144da6
(server-switch-buffer): Don't select a minibuffer.
Karl Heuer <kwzh@gnu.org>
parents:
6176
diff
changeset
|
344 (select-window (next-window nil 'nomini t))) |
50 | 345 (if next-buffer |
346 (if (and (bufferp next-buffer) | |
347 (buffer-name next-buffer)) | |
348 (switch-to-buffer next-buffer) | |
349 ;; If NEXT-BUFFER is a dead buffer, | |
350 ;; remove the server records for it | |
351 ;; and try the next surviving server buffer. | |
352 (server-switch-buffer | |
353 (server-buffer-done next-buffer))) | |
354 (if server-clients | |
355 (server-switch-buffer (nth 1 (car server-clients))) | |
356 (switch-to-buffer (other-buffer))))) | |
357 | |
358 (global-set-key "\C-x#" 'server-edit) | |
1079 | 359 |
360 (provide 'server) | |
658
7cbd4fcd8b0f
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
445
diff
changeset
|
361 |
7cbd4fcd8b0f
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
445
diff
changeset
|
362 ;;; server.el ends here |