Mercurial > emacs
annotate lisp/server.el @ 7248:48ef5c3465ae
(solar-degrees-to-hours, solar-hours-to-days): Force floating result.
(sunrise-sunset): Don't alter calendar-daylight-savings-starts
and calendar-daylight-savings-ends.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Sun, 01 May 1994 07:39:02 +0000 |
parents | 0983fe01e614 |
children | cc7cd83ccf3f |
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 |
1079 | 3 ;; Copyright (C) 1986, 1987, 1992 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 | |
85 (defvar server-process nil | |
86 "the current server process") | |
87 | |
138 | 88 (defvar server-previous-string "") |
89 | |
50 | 90 (defvar server-clients nil |
91 "List of current server clients. | |
92 Each element is (CLIENTID FILES...) where CLIENTID is a string | |
93 that can be given to the server process to identify a client. | |
94 When a buffer is marked as \"done\", it is removed from this list.") | |
95 | |
96 (defvar server-buffer-clients nil | |
97 "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
|
98 (make-variable-buffer-local 'server-buffer-clients) |
50 | 99 ;; Changing major modes should not erase this local. |
100 (put 'server-buffer-clients 'permanent-local t) | |
101 | |
3661
65d530f613a8
(server-window): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
2866
diff
changeset
|
102 (defvar server-window nil |
65d530f613a8
(server-window): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
2866
diff
changeset
|
103 "*The window to use for selecting Emacs server buffers. |
65d530f613a8
(server-window): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
2866
diff
changeset
|
104 If nil, use the selected window. |
65d530f613a8
(server-window): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
2866
diff
changeset
|
105 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
|
106 |
50 | 107 (defvar server-temp-file-regexp "^/tmp/Re\\|/draft$" |
108 "*Regexp which should match filenames of temporary files | |
109 which are deleted and reused after each edit | |
110 by the programs that invoke the emacs server.") | |
111 | |
112 (or (assq 'server-buffer-clients minor-mode-alist) | |
113 (setq minor-mode-alist (cons '(server-buffer-clients " Server") minor-mode-alist))) | |
114 | |
115 ;; If a *server* buffer exists, | |
116 ;; write STRING to it for logging purposes. | |
117 (defun server-log (string) | |
118 (if (get-buffer "*server*") | |
119 (save-excursion | |
120 (set-buffer "*server*") | |
121 (goto-char (point-max)) | |
122 (insert string) | |
123 (or (bobp) (newline))))) | |
124 | |
125 (defun server-sentinel (proc msg) | |
126 (cond ((eq (process-status proc) 'exit) | |
127 (server-log (message "Server subprocess exited"))) | |
128 ((eq (process-status proc) 'signal) | |
129 (server-log (message "Server subprocess killed"))))) | |
130 | |
256 | 131 ;;;###autoload |
50 | 132 (defun server-start (&optional leave-dead) |
133 "Allow this Emacs process to be a server for client processes. | |
134 This starts a server communications subprocess through which | |
135 client \"editors\" can send your editing commands to this Emacs job. | |
136 To use the server, set up the program `etc/emacsclient' in the | |
137 Emacs distribution as your standard \"editor\". | |
138 | |
139 Prefix arg means just kill any existing server communications subprocess." | |
140 (interactive "P") | |
141 ;; kill it dead! | |
142 (if server-process | |
143 (progn | |
144 (set-process-sentinel server-process nil) | |
145 (condition-case () (delete-process server-process) (error nil)))) | |
146 (condition-case () (delete-file "~/.emacs_server") (error nil)) | |
147 ;; If we already had a server, clear out associated status. | |
148 (while server-clients | |
149 (let ((buffer (nth 1 (car server-clients)))) | |
150 (server-buffer-done buffer))) | |
151 (if leave-dead | |
152 nil | |
153 (if server-process | |
154 (server-log (message "Restarting server"))) | |
155 (setq server-process (start-process "server" nil server-program)) | |
156 (set-process-sentinel server-process 'server-sentinel) | |
157 (set-process-filter server-process 'server-process-filter) | |
158 (process-kill-without-query server-process))) | |
159 | |
160 ;Process a request from the server to edit some files. | |
161 ;Format of STRING is "Client: CLIENTID PATH PATH PATH... \n" | |
162 (defun server-process-filter (proc string) | |
163 (server-log string) | |
138 | 164 (setq string (concat server-previous-string string)) |
165 (if (not (and (eq ?\n (aref string (1- (length string)))) | |
166 (eq 0 (string-match "Client: " string)))) | |
167 ;; If input is not complete, save it for later. | |
168 (setq server-previous-string string) | |
169 ;; If it is complete, process it now, and discard what was saved. | |
50 | 170 (setq string (substring string (match-end 0))) |
138 | 171 (setq server-previous-string "") |
50 | 172 (let ((client (list (substring string 0 (string-match " " string)))) |
173 (files nil) | |
174 (lineno 1)) | |
175 (setq string (substring string (match-end 0))) | |
176 (while (string-match "[^ ]+ " string) | |
177 (let ((arg | |
178 (substring string (match-beginning 0) (1- (match-end 0))))) | |
179 (setq string (substring string (match-end 0))) | |
180 (if (string-match "\\`\\+[0-9]+\\'" arg) | |
181 (setq lineno (read (substring arg 1))) | |
182 (setq files | |
183 (cons (list arg lineno) | |
184 files)) | |
185 (setq lineno 1)))) | |
186 (server-visit-files files client) | |
187 ;; CLIENT is now a list (CLIENTNUM BUFFERS...) | |
188 (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
|
189 (server-switch-buffer (nth 1 client)) |
2866
48ddb3600ae6
* server.el (server-switch-hook): New hook.
Jim Blandy <jimb@redhat.com>
parents:
1540
diff
changeset
|
190 (run-hooks 'server-switch-hook) |
50 | 191 (message (substitute-command-keys |
192 "When done with a buffer, type \\[server-edit]."))))) | |
193 | |
194 (defun server-visit-files (files client) | |
195 "Finds FILES and returns the list CLIENT with the buffers nconc'd. | |
196 FILES is an alist whose elements are (FILENAME LINENUMBER)." | |
4500
56d7c4beae9f
(server-visit-files): Restore current-buffer by hand,
Richard M. Stallman <rms@gnu.org>
parents:
4096
diff
changeset
|
197 (let (client-record (obuf (current-buffer))) |
56d7c4beae9f
(server-visit-files): Restore current-buffer by hand,
Richard M. Stallman <rms@gnu.org>
parents:
4096
diff
changeset
|
198 ;; 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
|
199 ;; 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
|
200 ;; 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
|
201 (unwind-protect |
56d7c4beae9f
(server-visit-files): Restore current-buffer by hand,
Richard M. Stallman <rms@gnu.org>
parents:
4096
diff
changeset
|
202 (while files |
56d7c4beae9f
(server-visit-files): Restore current-buffer by hand,
Richard M. Stallman <rms@gnu.org>
parents:
4096
diff
changeset
|
203 ;; 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
|
204 ;; revert it. |
56d7c4beae9f
(server-visit-files): Restore current-buffer by hand,
Richard M. Stallman <rms@gnu.org>
parents:
4096
diff
changeset
|
205 ;; 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
|
206 (let* ((filen (car (car files))) |
56d7c4beae9f
(server-visit-files): Restore current-buffer by hand,
Richard M. Stallman <rms@gnu.org>
parents:
4096
diff
changeset
|
207 (obuf (get-file-buffer filen))) |
56d7c4beae9f
(server-visit-files): Restore current-buffer by hand,
Richard M. Stallman <rms@gnu.org>
parents:
4096
diff
changeset
|
208 (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
|
209 (if (file-exists-p filen) |
56d7c4beae9f
(server-visit-files): Restore current-buffer by hand,
Richard M. Stallman <rms@gnu.org>
parents:
4096
diff
changeset
|
210 (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
|
211 (buffer-modified-p obuf)) |
56d7c4beae9f
(server-visit-files): Restore current-buffer by hand,
Richard M. Stallman <rms@gnu.org>
parents:
4096
diff
changeset
|
212 (revert-buffer t nil)) |
56d7c4beae9f
(server-visit-files): Restore current-buffer by hand,
Richard M. Stallman <rms@gnu.org>
parents:
4096
diff
changeset
|
213 (if (y-or-n-p |
56d7c4beae9f
(server-visit-files): Restore current-buffer by hand,
Richard M. Stallman <rms@gnu.org>
parents:
4096
diff
changeset
|
214 (concat "File no longer exists: " |
56d7c4beae9f
(server-visit-files): Restore current-buffer by hand,
Richard M. Stallman <rms@gnu.org>
parents:
4096
diff
changeset
|
215 filen |
56d7c4beae9f
(server-visit-files): Restore current-buffer by hand,
Richard M. Stallman <rms@gnu.org>
parents:
4096
diff
changeset
|
216 ", write buffer to file? ")) |
56d7c4beae9f
(server-visit-files): Restore current-buffer by hand,
Richard M. Stallman <rms@gnu.org>
parents:
4096
diff
changeset
|
217 (write-file filen))) |
56d7c4beae9f
(server-visit-files): Restore current-buffer by hand,
Richard M. Stallman <rms@gnu.org>
parents:
4096
diff
changeset
|
218 (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
|
219 (run-hooks 'server-visit-hook))) |
56d7c4beae9f
(server-visit-files): Restore current-buffer by hand,
Richard M. Stallman <rms@gnu.org>
parents:
4096
diff
changeset
|
220 (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
|
221 (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
|
222 (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
|
223 (setq files (cdr files))) |
56d7c4beae9f
(server-visit-files): Restore current-buffer by hand,
Richard M. Stallman <rms@gnu.org>
parents:
4096
diff
changeset
|
224 (set-buffer obuf)) |
50 | 225 (nconc client client-record))) |
226 | |
227 (defun server-buffer-done (buffer) | |
228 "Mark BUFFER as \"done\" for its client(s). | |
229 Buries the buffer, and returns another server buffer | |
230 as a suggestion for what to select next." | |
231 (let ((running (eq (process-status server-process) 'run)) | |
232 (next-buffer nil) | |
233 (old-clients server-clients)) | |
234 (while old-clients | |
235 (let ((client (car old-clients))) | |
236 (or next-buffer | |
237 (setq next-buffer (nth 1 (memq buffer client)))) | |
238 (delq buffer client) | |
239 ;; If client now has no pending buffers, | |
240 ;; tell it that it is done, and forget it entirely. | |
241 (if (cdr client) nil | |
242 (if running | |
243 (progn | |
244 (send-string server-process | |
245 (format "Close: %s Done\n" (car client))) | |
246 (server-log (format "Close: %s Done\n" (car client))))) | |
247 (setq server-clients (delq client server-clients)))) | |
248 (setq old-clients (cdr old-clients))) | |
249 (if (buffer-name buffer) | |
6176
1dbec303c87b
(kill-emacs-query-functions, kill-buffer-query-functions):
Richard M. Stallman <rms@gnu.org>
parents:
5749
diff
changeset
|
250 (progn |
1dbec303c87b
(kill-emacs-query-functions, kill-buffer-query-functions):
Richard M. Stallman <rms@gnu.org>
parents:
5749
diff
changeset
|
251 (save-excursion |
1dbec303c87b
(kill-emacs-query-functions, kill-buffer-query-functions):
Richard M. Stallman <rms@gnu.org>
parents:
5749
diff
changeset
|
252 (set-buffer buffer) |
1dbec303c87b
(kill-emacs-query-functions, kill-buffer-query-functions):
Richard M. Stallman <rms@gnu.org>
parents:
5749
diff
changeset
|
253 (setq server-buffer-clients nil)) |
1dbec303c87b
(kill-emacs-query-functions, kill-buffer-query-functions):
Richard M. Stallman <rms@gnu.org>
parents:
5749
diff
changeset
|
254 (bury-buffer buffer))) |
50 | 255 next-buffer)) |
256 | |
257 (defun server-temp-file-p (buffer) | |
258 "Return non-nil if BUFFER contains a file considered temporary. | |
259 These are files whose names suggest they are repeatedly | |
260 reused to pass information to another program. | |
261 | |
262 The variable `server-temp-file-regexp' controls which filenames | |
263 are considered temporary." | |
264 (and (buffer-file-name buffer) | |
265 (string-match server-temp-file-regexp (buffer-file-name buffer)))) | |
266 | |
267 (defun server-done () | |
1540 | 268 "Offer to save current buffer, mark it as \"done\" for clients. |
269 Then bury it, and return a suggested buffer to select next." | |
50 | 270 (let ((buffer (current-buffer))) |
271 (if server-buffer-clients | |
6176
1dbec303c87b
(kill-emacs-query-functions, kill-buffer-query-functions):
Richard M. Stallman <rms@gnu.org>
parents:
5749
diff
changeset
|
272 (let (suggested-buffer) |
50 | 273 (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
|
274 ;; 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
|
275 ;; (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
|
276 (let ((version-control nil) |
badd80e9e4fc
(server-done): Let save-buffer make the backup,
Richard M. Stallman <rms@gnu.org>
parents:
3746
diff
changeset
|
277 (buffer-backed-up nil)) |
badd80e9e4fc
(server-done): Let save-buffer make the backup,
Richard M. Stallman <rms@gnu.org>
parents:
3746
diff
changeset
|
278 (save-buffer) |
6176
1dbec303c87b
(kill-emacs-query-functions, kill-buffer-query-functions):
Richard M. Stallman <rms@gnu.org>
parents:
5749
diff
changeset
|
279 (kill-buffer buffer) |
1dbec303c87b
(kill-emacs-query-functions, kill-buffer-query-functions):
Richard M. Stallman <rms@gnu.org>
parents:
5749
diff
changeset
|
280 (setq suggested-buffer (current-buffer))) |
50 | 281 (if (and (buffer-modified-p) |
282 (y-or-n-p (concat "Save file " buffer-file-name "? "))) | |
283 (save-buffer buffer))) | |
6176
1dbec303c87b
(kill-emacs-query-functions, kill-buffer-query-functions):
Richard M. Stallman <rms@gnu.org>
parents:
5749
diff
changeset
|
284 (or (server-buffer-done buffer) suggested-buffer))))) |
1dbec303c87b
(kill-emacs-query-functions, kill-buffer-query-functions):
Richard M. Stallman <rms@gnu.org>
parents:
5749
diff
changeset
|
285 |
1dbec303c87b
(kill-emacs-query-functions, kill-buffer-query-functions):
Richard M. Stallman <rms@gnu.org>
parents:
5749
diff
changeset
|
286 ;; 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
|
287 ;; 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
|
288 ;; 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
|
289 (defun server-kill-buffer-query-function () |
0983fe01e614
(server-kill-emacs-query-function)
Richard M. Stallman <rms@gnu.org>
parents:
6960
diff
changeset
|
290 (or (not server-buffer-clients) |
0983fe01e614
(server-kill-emacs-query-function)
Richard M. Stallman <rms@gnu.org>
parents:
6960
diff
changeset
|
291 (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
|
292 (buffer-name (current-buffer)))))) |
0983fe01e614
(server-kill-emacs-query-function)
Richard M. Stallman <rms@gnu.org>
parents:
6960
diff
changeset
|
293 |
6176
1dbec303c87b
(kill-emacs-query-functions, kill-buffer-query-functions):
Richard M. Stallman <rms@gnu.org>
parents:
5749
diff
changeset
|
294 (add-hook 'kill-buffer-query-functions |
6993
0983fe01e614
(server-kill-emacs-query-function)
Richard M. Stallman <rms@gnu.org>
parents:
6960
diff
changeset
|
295 '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
|
296 |
6993
0983fe01e614
(server-kill-emacs-query-function)
Richard M. Stallman <rms@gnu.org>
parents:
6960
diff
changeset
|
297 (defun server-kill-emacs-query-function () |
0983fe01e614
(server-kill-emacs-query-function)
Richard M. Stallman <rms@gnu.org>
parents:
6960
diff
changeset
|
298 (or (not server-clients) |
0983fe01e614
(server-kill-emacs-query-function)
Richard M. Stallman <rms@gnu.org>
parents:
6960
diff
changeset
|
299 (yes-or-no-p "Server buffers still have clients; exit anyway? "))) |
0983fe01e614
(server-kill-emacs-query-function)
Richard M. Stallman <rms@gnu.org>
parents:
6960
diff
changeset
|
300 |
0983fe01e614
(server-kill-emacs-query-function)
Richard M. Stallman <rms@gnu.org>
parents:
6960
diff
changeset
|
301 (add-hook 'kill-emacs-query-functions 'server-kill-emacs-query-function) |
50 | 302 |
303 (defun server-edit (&optional arg) | |
304 "Switch to next server editing buffer; say \"Done\" for current buffer. | |
305 If a server buffer is current, it is marked \"done\" and optionally saved. | |
306 When all of a client's buffers are marked as \"done\", the client is notified. | |
307 | |
308 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
|
309 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
|
310 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
|
311 prevent a backup for it.) The variable `server-temp-file-regexp' controls |
50 | 312 which filenames are considered temporary. |
313 | |
314 If invoked with a prefix argument, or if there is no server process running, | |
315 starts server process and that is all. Invoked by \\[server-edit]." | |
316 | |
317 (interactive "P") | |
318 (if (or arg | |
319 (not server-process) | |
320 (memq (process-status server-process) '(signal exit))) | |
321 (server-start nil) | |
322 (server-switch-buffer (server-done)))) | |
323 | |
324 (defun server-switch-buffer (next-buffer) | |
325 "Switch to another buffer, preferably one that has a client. | |
326 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
|
327 (cond ((windowp server-window) |
65d530f613a8
(server-window): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
2866
diff
changeset
|
328 (select-window server-window)) |
65d530f613a8
(server-window): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
2866
diff
changeset
|
329 ((framep server-window) |
65d530f613a8
(server-window): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
2866
diff
changeset
|
330 (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
|
331 (if (window-minibuffer-p (selected-window)) |
472277144da6
(server-switch-buffer): Don't select a minibuffer.
Karl Heuer <kwzh@gnu.org>
parents:
6176
diff
changeset
|
332 (select-window (next-window nil 'nomini t))) |
50 | 333 (if next-buffer |
334 (if (and (bufferp next-buffer) | |
335 (buffer-name next-buffer)) | |
336 (switch-to-buffer next-buffer) | |
337 ;; If NEXT-BUFFER is a dead buffer, | |
338 ;; remove the server records for it | |
339 ;; and try the next surviving server buffer. | |
340 (server-switch-buffer | |
341 (server-buffer-done next-buffer))) | |
342 (if server-clients | |
343 (server-switch-buffer (nth 1 (car server-clients))) | |
344 (switch-to-buffer (other-buffer))))) | |
345 | |
346 (global-set-key "\C-x#" 'server-edit) | |
1079 | 347 |
348 (provide 'server) | |
658
7cbd4fcd8b0f
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
445
diff
changeset
|
349 |
7cbd4fcd8b0f
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
445
diff
changeset
|
350 ;;; server.el ends here |