Mercurial > emacs
annotate lisp/server.el @ 42109:24f8e84cb04d
Indexed `empty string' definition.
author | Robert J. Chassell <bob@rattlesnake.com> |
---|---|
date | Mon, 17 Dec 2001 19:24:09 +0000 |
parents | 9bd3aeb8f5ae |
children | 49087a9d073e |
rev | line source |
---|---|
38412
253f761ad37b
Some fixes to follow coding conventions in files maintained by FSF.
Pavel Janík <Pavel@Janik.cz>
parents:
38010
diff
changeset
|
1 ;;; server.el --- Lisp code for GNU Emacs running as server process |
658
7cbd4fcd8b0f
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
445
diff
changeset
|
2 |
37273
e558d3f235fd
(server-visit-files): Set server-existing-buffer
Gerd Moellmann <gerd@gnu.org>
parents:
36304
diff
changeset
|
3 ;; Copyright (C) 1986, 87, 92, 94, 95, 96, 97, 98, 99, 2000, 2001 |
34344
a160265d0a06
(server-visit-files): Push files on file-name-history.
Gerd Moellmann <gerd@gnu.org>
parents:
31008
diff
changeset
|
4 ;; Free Software Foundation, Inc. |
844
bf829a2d63b4
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
814
diff
changeset
|
5 |
787
3cece0106722
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
702
diff
changeset
|
6 ;; Author: William Sommerfeld <wesommer@athena.mit.edu> |
17970 | 7 ;; Maintainer: FSF |
814
38b2499cb3e9
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
807
diff
changeset
|
8 ;; Keywords: processes |
787
3cece0106722
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
702
diff
changeset
|
9 |
3cece0106722
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
702
diff
changeset
|
10 ;; Changes by peck@sun.com and by rms. |
3cece0106722
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
702
diff
changeset
|
11 |
50 | 12 ;; This file is part of GNU Emacs. |
13 | |
14 ;; GNU Emacs is free software; you can redistribute it and/or modify | |
15 ;; it under the terms of the GNU General Public License as published by | |
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
787
diff
changeset
|
16 ;; the Free Software Foundation; either version 2, or (at your option) |
50 | 17 ;; any later version. |
18 | |
19 ;; GNU Emacs is distributed in the hope that it will be useful, | |
20 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
21 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
22 ;; GNU General Public License for more details. | |
23 | |
24 ;; You should have received a copy of the GNU General Public License | |
14169 | 25 ;; along with GNU Emacs; see the file COPYING. If not, write to the |
26 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330, | |
27 ;; Boston, MA 02111-1307, USA. | |
50 | 28 |
787
3cece0106722
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
702
diff
changeset
|
29 ;;; Commentary: |
50 | 30 |
14169 | 31 ;; This Lisp code is run in Emacs when it is to operate as |
32 ;; a server for other processes. | |
50 | 33 |
14169 | 34 ;; Load this library and do M-x server-edit to enable Emacs as a server. |
35 ;; Emacs runs the program ../arch-lib/emacsserver as a subprocess | |
36 ;; for communication with clients. If there are no client buffers to edit, | |
37 ;; server-edit acts like (switch-to-buffer (other-buffer)) | |
50 | 38 |
14169 | 39 ;; When some other program runs "the editor" to edit a file, |
40 ;; "the editor" can be the Emacs client program ../lib-src/emacsclient. | |
41 ;; This program transmits the file names to Emacs through | |
42 ;; the server subprocess, and Emacs visits them and lets you edit them. | |
50 | 43 |
14169 | 44 ;; Note that any number of clients may dispatch files to emacs to be edited. |
50 | 45 |
14169 | 46 ;; When you finish editing a Server buffer, again call server-edit |
47 ;; to mark that buffer as done for the client and switch to the next | |
48 ;; Server buffer. When all the buffers for a client have been edited | |
49 ;; and exited with server-edit, the client "editor" will return | |
50 ;; to the program that invoked it. | |
50 | 51 |
14169 | 52 ;; Your editing commands and Emacs's display output go to and from |
53 ;; the terminal in the usual way. Thus, server operation is possible | |
54 ;; only when Emacs can talk to the terminal at the time you invoke | |
55 ;; the client. This is possible in four cases: | |
50 | 56 |
14169 | 57 ;; 1. On a window system, where Emacs runs in one window and the |
58 ;; program that wants to use "the editor" runs in another. | |
50 | 59 |
14169 | 60 ;; 2. On a multi-terminal system, where Emacs runs on one terminal and the |
61 ;; program that wants to use "the editor" runs on another. | |
50 | 62 |
14169 | 63 ;; 3. When the program that wants to use "the editor" is running |
64 ;; as a subprocess of Emacs. | |
50 | 65 |
14169 | 66 ;; 4. On a system with job control, when Emacs is suspended, the program |
67 ;; that wants to use "the editor" will stop and display | |
68 ;; "Waiting for Emacs...". It can then be suspended, and Emacs can be | |
69 ;; brought into the foreground for editing. When done editing, Emacs is | |
70 ;; suspended again, and the client program is brought into the foreground. | |
50 | 71 |
14169 | 72 ;; The buffer local variable "server-buffer-clients" lists |
73 ;; the clients who are waiting for this buffer to be edited. | |
74 ;; The global variable "server-clients" lists all the waiting clients, | |
75 ;; and which files are yet to be edited for each. | |
787
3cece0106722
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
702
diff
changeset
|
76 |
3cece0106722
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
702
diff
changeset
|
77 ;;; Code: |
50 | 78 |
19418 | 79 (defgroup server nil |
80 "Emacs running as a server process." | |
81 :group 'external) | |
50 | 82 |
19418 | 83 (defcustom server-program (expand-file-name "emacsserver" exec-directory) |
84 "*The program to use as the edit server." | |
85 :group 'server | |
86 :type 'string) | |
2866
48ddb3600ae6
* server.el (server-switch-hook): New hook.
Jim Blandy <jimb@redhat.com>
parents:
1540
diff
changeset
|
87 |
19418 | 88 (defcustom server-visit-hook nil |
89 "*List of hooks to call when visiting a file for the Emacs server." | |
90 :group 'server | |
91 :type '(repeat function)) | |
50 | 92 |
19418 | 93 (defcustom server-switch-hook nil |
94 "*List of hooks to call when switching to a buffer for the Emacs server." | |
95 :group 'server | |
96 :type '(repeat function)) | |
97 | |
98 (defcustom server-done-hook nil | |
99 "*List of hooks to call when done editing a buffer for the Emacs server." | |
100 :group 'server | |
101 :type '(repeat function)) | |
7597
99a600c67e82
(server-done-hook): New hook.
Richard M. Stallman <rms@gnu.org>
parents:
7553
diff
changeset
|
102 |
50 | 103 (defvar server-process nil |
38010
8a8cf4d74475
(server-process, server-buffer-clients): Doc fix.
Eli Zaretskii <eliz@gnu.org>
parents:
37273
diff
changeset
|
104 "The current server process") |
50 | 105 |
138 | 106 (defvar server-previous-string "") |
107 | |
50 | 108 (defvar server-clients nil |
109 "List of current server clients. | |
7736
8c8410bc0f1b
(server-visit-files): Bind last-nonmenu-event.
Richard M. Stallman <rms@gnu.org>
parents:
7597
diff
changeset
|
110 Each element is (CLIENTID BUFFERS...) where CLIENTID is a string |
50 | 111 that can be given to the server process to identify a client. |
112 When a buffer is marked as \"done\", it is removed from this list.") | |
113 | |
114 (defvar server-buffer-clients nil | |
38010
8a8cf4d74475
(server-process, server-buffer-clients): Doc fix.
Eli Zaretskii <eliz@gnu.org>
parents:
37273
diff
changeset
|
115 "List of client ids 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
|
116 (make-variable-buffer-local 'server-buffer-clients) |
50 | 117 ;; Changing major modes should not erase this local. |
118 (put 'server-buffer-clients 'permanent-local t) | |
119 | |
3661
65d530f613a8
(server-window): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
2866
diff
changeset
|
120 (defvar server-window nil |
65d530f613a8
(server-window): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
2866
diff
changeset
|
121 "*The window to use for selecting Emacs server buffers. |
65d530f613a8
(server-window): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
2866
diff
changeset
|
122 If nil, use the selected window. |
65d530f613a8
(server-window): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
2866
diff
changeset
|
123 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
|
124 |
19418 | 125 (defcustom server-temp-file-regexp "^/tmp/Re\\|/draft$" |
50 | 126 "*Regexp which should match filenames of temporary files |
127 which are deleted and reused after each edit | |
31008
ac8beefc28a9
(server-kill-new-buffers): New user option.
Gerd Moellmann <gerd@gnu.org>
parents:
30004
diff
changeset
|
128 by the programs that invoke the Emacs server." |
19418 | 129 :group 'server |
130 :type 'regexp) | |
50 | 131 |
31008
ac8beefc28a9
(server-kill-new-buffers): New user option.
Gerd Moellmann <gerd@gnu.org>
parents:
30004
diff
changeset
|
132 (defcustom server-kill-new-buffers t |
ac8beefc28a9
(server-kill-new-buffers): New user option.
Gerd Moellmann <gerd@gnu.org>
parents:
30004
diff
changeset
|
133 "*Whether to kill buffers when done with them. |
ac8beefc28a9
(server-kill-new-buffers): New user option.
Gerd Moellmann <gerd@gnu.org>
parents:
30004
diff
changeset
|
134 If non-nil, kill a buffer unless it already existed before editing |
ac8beefc28a9
(server-kill-new-buffers): New user option.
Gerd Moellmann <gerd@gnu.org>
parents:
30004
diff
changeset
|
135 it with Emacs server. If nil, kill only buffers as specified by |
ac8beefc28a9
(server-kill-new-buffers): New user option.
Gerd Moellmann <gerd@gnu.org>
parents:
30004
diff
changeset
|
136 `server-temp-file-regexp'. |
ac8beefc28a9
(server-kill-new-buffers): New user option.
Gerd Moellmann <gerd@gnu.org>
parents:
30004
diff
changeset
|
137 Please note that only buffers are killed that still have a client, |
ac8beefc28a9
(server-kill-new-buffers): New user option.
Gerd Moellmann <gerd@gnu.org>
parents:
30004
diff
changeset
|
138 i.e. buffers visited which \"emacsclient --no-wait\" are never killed in |
ac8beefc28a9
(server-kill-new-buffers): New user option.
Gerd Moellmann <gerd@gnu.org>
parents:
30004
diff
changeset
|
139 this way." |
ac8beefc28a9
(server-kill-new-buffers): New user option.
Gerd Moellmann <gerd@gnu.org>
parents:
30004
diff
changeset
|
140 :group 'server |
ac8beefc28a9
(server-kill-new-buffers): New user option.
Gerd Moellmann <gerd@gnu.org>
parents:
30004
diff
changeset
|
141 :type 'boolean |
ac8beefc28a9
(server-kill-new-buffers): New user option.
Gerd Moellmann <gerd@gnu.org>
parents:
30004
diff
changeset
|
142 :version "21.1") |
ac8beefc28a9
(server-kill-new-buffers): New user option.
Gerd Moellmann <gerd@gnu.org>
parents:
30004
diff
changeset
|
143 |
50 | 144 (or (assq 'server-buffer-clients minor-mode-alist) |
145 (setq minor-mode-alist (cons '(server-buffer-clients " Server") minor-mode-alist))) | |
146 | |
31008
ac8beefc28a9
(server-kill-new-buffers): New user option.
Gerd Moellmann <gerd@gnu.org>
parents:
30004
diff
changeset
|
147 (defvar server-existing-buffer nil |
40915
e26c1e76e1ca
(server-buffer-done): Test of server-existing-buffer was backwards.
Richard M. Stallman <rms@gnu.org>
parents:
39177
diff
changeset
|
148 "Non-nil means a buffer existed before the Emacs server was asked visit it. |
e26c1e76e1ca
(server-buffer-done): Test of server-existing-buffer was backwards.
Richard M. Stallman <rms@gnu.org>
parents:
39177
diff
changeset
|
149 This means that the server should not kill the buffer when you say you |
e26c1e76e1ca
(server-buffer-done): Test of server-existing-buffer was backwards.
Richard M. Stallman <rms@gnu.org>
parents:
39177
diff
changeset
|
150 are done with it in the server. This variable is local in each buffer |
e26c1e76e1ca
(server-buffer-done): Test of server-existing-buffer was backwards.
Richard M. Stallman <rms@gnu.org>
parents:
39177
diff
changeset
|
151 where it is set.") |
31008
ac8beefc28a9
(server-kill-new-buffers): New user option.
Gerd Moellmann <gerd@gnu.org>
parents:
30004
diff
changeset
|
152 (make-variable-buffer-local 'server-existing-buffer) |
ac8beefc28a9
(server-kill-new-buffers): New user option.
Gerd Moellmann <gerd@gnu.org>
parents:
30004
diff
changeset
|
153 |
50 | 154 ;; If a *server* buffer exists, |
155 ;; write STRING to it for logging purposes. | |
156 (defun server-log (string) | |
157 (if (get-buffer "*server*") | |
158 (save-excursion | |
159 (set-buffer "*server*") | |
160 (goto-char (point-max)) | |
13468
2c8da6b3b9e0
(server-log): Record the current time.
Richard M. Stallman <rms@gnu.org>
parents:
13157
diff
changeset
|
161 (insert (current-time-string) " " string) |
2c8da6b3b9e0
(server-log): Record the current time.
Richard M. Stallman <rms@gnu.org>
parents:
13157
diff
changeset
|
162 (or (bolp) (newline))))) |
50 | 163 |
164 (defun server-sentinel (proc msg) | |
165 (cond ((eq (process-status proc) 'exit) | |
166 (server-log (message "Server subprocess exited"))) | |
167 ((eq (process-status proc) 'signal) | |
168 (server-log (message "Server subprocess killed"))))) | |
169 | |
256 | 170 ;;;###autoload |
50 | 171 (defun server-start (&optional leave-dead) |
172 "Allow this Emacs process to be a server for client processes. | |
173 This starts a server communications subprocess through which | |
174 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
|
175 To use the server, set up the program `emacsclient' in the |
50 | 176 Emacs distribution as your standard \"editor\". |
177 | |
178 Prefix arg means just kill any existing server communications subprocess." | |
179 (interactive "P") | |
180 ;; kill it dead! | |
181 (if server-process | |
182 (progn | |
183 (set-process-sentinel server-process nil) | |
184 (condition-case () (delete-process server-process) (error nil)))) | |
16789
85b1a10101ff
(server-start): Don't delete ~/.emacs-server.
Richard M. Stallman <rms@gnu.org>
parents:
16075
diff
changeset
|
185 ;; Delete the socket files made by previous server invocations. |
13157
31242cebf1d3
(server-start): Try both full hostname and shortened
Richard M. Stallman <rms@gnu.org>
parents:
13070
diff
changeset
|
186 (let* ((sysname (system-name)) |
31242cebf1d3
(server-start): Try both full hostname and shortened
Richard M. Stallman <rms@gnu.org>
parents:
13070
diff
changeset
|
187 (dot-index (string-match "\\." sysname))) |
31242cebf1d3
(server-start): Try both full hostname and shortened
Richard M. Stallman <rms@gnu.org>
parents:
13070
diff
changeset
|
188 (condition-case () |
16789
85b1a10101ff
(server-start): Don't delete ~/.emacs-server.
Richard M. Stallman <rms@gnu.org>
parents:
16075
diff
changeset
|
189 (delete-file (format "~/.emacs-server-%s" sysname)) |
85b1a10101ff
(server-start): Don't delete ~/.emacs-server.
Richard M. Stallman <rms@gnu.org>
parents:
16075
diff
changeset
|
190 (error nil)) |
85b1a10101ff
(server-start): Don't delete ~/.emacs-server.
Richard M. Stallman <rms@gnu.org>
parents:
16075
diff
changeset
|
191 (condition-case () |
13157
31242cebf1d3
(server-start): Try both full hostname and shortened
Richard M. Stallman <rms@gnu.org>
parents:
13070
diff
changeset
|
192 (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
|
193 (error nil)) |
31242cebf1d3
(server-start): Try both full hostname and shortened
Richard M. Stallman <rms@gnu.org>
parents:
13070
diff
changeset
|
194 ;; 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
|
195 ;; try deleting that name too. |
31242cebf1d3
(server-start): Try both full hostname and shortened
Richard M. Stallman <rms@gnu.org>
parents:
13070
diff
changeset
|
196 (if dot-index |
16789
85b1a10101ff
(server-start): Don't delete ~/.emacs-server.
Richard M. Stallman <rms@gnu.org>
parents:
16075
diff
changeset
|
197 (let ((shortname (substring sysname 0 dot-index))) |
85b1a10101ff
(server-start): Don't delete ~/.emacs-server.
Richard M. Stallman <rms@gnu.org>
parents:
16075
diff
changeset
|
198 (condition-case () |
85b1a10101ff
(server-start): Don't delete ~/.emacs-server.
Richard M. Stallman <rms@gnu.org>
parents:
16075
diff
changeset
|
199 (delete-file (format "~/.emacs-server-%s" shortname)) |
85b1a10101ff
(server-start): Don't delete ~/.emacs-server.
Richard M. Stallman <rms@gnu.org>
parents:
16075
diff
changeset
|
200 (error nil)) |
85b1a10101ff
(server-start): Don't delete ~/.emacs-server.
Richard M. Stallman <rms@gnu.org>
parents:
16075
diff
changeset
|
201 (condition-case () |
85b1a10101ff
(server-start): Don't delete ~/.emacs-server.
Richard M. Stallman <rms@gnu.org>
parents:
16075
diff
changeset
|
202 (delete-file (format "/tmp/esrv%d-%s" (user-uid) shortname)) |
85b1a10101ff
(server-start): Don't delete ~/.emacs-server.
Richard M. Stallman <rms@gnu.org>
parents:
16075
diff
changeset
|
203 (error nil))))) |
85b1a10101ff
(server-start): Don't delete ~/.emacs-server.
Richard M. Stallman <rms@gnu.org>
parents:
16075
diff
changeset
|
204 ;; If this Emacs already had a server, clear out associated status. |
50 | 205 (while server-clients |
206 (let ((buffer (nth 1 (car server-clients)))) | |
207 (server-buffer-done buffer))) | |
208 (if leave-dead | |
209 nil | |
210 (if server-process | |
211 (server-log (message "Restarting server"))) | |
8733
14b8f8a28ace
(server-start): Always use pipes for communication.
Richard M. Stallman <rms@gnu.org>
parents:
8202
diff
changeset
|
212 ;; 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
|
213 ;; 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
|
214 (let ((process-connection-type nil)) |
14b8f8a28ace
(server-start): Always use pipes for communication.
Richard M. Stallman <rms@gnu.org>
parents:
8202
diff
changeset
|
215 (setq server-process (start-process "server" nil server-program))) |
50 | 216 (set-process-sentinel server-process 'server-sentinel) |
217 (set-process-filter server-process 'server-process-filter) | |
24474
3b77bf7b709e
(server-start): Set coding system for the server
Kenichi Handa <handa@m17n.org>
parents:
21941
diff
changeset
|
218 ;; We must receive file names without being decoded. Those are |
3b77bf7b709e
(server-start): Set coding system for the server
Kenichi Handa <handa@m17n.org>
parents:
21941
diff
changeset
|
219 ;; decoded by server-process-filter accoding to |
3b77bf7b709e
(server-start): Set coding system for the server
Kenichi Handa <handa@m17n.org>
parents:
21941
diff
changeset
|
220 ;; file-name-coding-system. |
3b77bf7b709e
(server-start): Set coding system for the server
Kenichi Handa <handa@m17n.org>
parents:
21941
diff
changeset
|
221 (set-process-coding-system server-process 'raw-text 'raw-text) |
50 | 222 (process-kill-without-query server-process))) |
223 | |
224 ;Process a request from the server to edit some files. | |
225 ;Format of STRING is "Client: CLIENTID PATH PATH PATH... \n" | |
226 (defun server-process-filter (proc string) | |
227 (server-log string) | |
138 | 228 (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
|
229 ;; If the input is multiple lines, |
44d98e169823
(server-process-filter): Process each line separately.
Richard M. Stallman <rms@gnu.org>
parents:
10218
diff
changeset
|
230 ;; process each line individually. |
44d98e169823
(server-process-filter): Process each line separately.
Richard M. Stallman <rms@gnu.org>
parents:
10218
diff
changeset
|
231 (while (string-match "\n" string) |
44d98e169823
(server-process-filter): Process each line separately.
Richard M. Stallman <rms@gnu.org>
parents:
10218
diff
changeset
|
232 (let ((request (substring string 0 (match-beginning 0))) |
24474
3b77bf7b709e
(server-start): Set coding system for the server
Kenichi Handa <handa@m17n.org>
parents:
21941
diff
changeset
|
233 (coding-system (and default-enable-multibyte-characters |
3b77bf7b709e
(server-start): Set coding system for the server
Kenichi Handa <handa@m17n.org>
parents:
21941
diff
changeset
|
234 (or file-name-coding-system |
3b77bf7b709e
(server-start): Set coding system for the server
Kenichi Handa <handa@m17n.org>
parents:
21941
diff
changeset
|
235 default-file-name-coding-system))) |
15956
0cefc98d243d
(server-visit-files): New argument NOWAIT.
Richard M. Stallman <rms@gnu.org>
parents:
14717
diff
changeset
|
236 client nowait |
50 | 237 (files nil) |
38462
a7043adf8855
(server-visit-files): Handle the case the specified
Gerd Moellmann <gerd@gnu.org>
parents:
38412
diff
changeset
|
238 (lineno 1) |
a7043adf8855
(server-visit-files): Handle the case the specified
Gerd Moellmann <gerd@gnu.org>
parents:
38412
diff
changeset
|
239 (columnno 0)) |
10281
44d98e169823
(server-process-filter): Process each line separately.
Richard M. Stallman <rms@gnu.org>
parents:
10218
diff
changeset
|
240 ;; Remove this line from STRING. |
44d98e169823
(server-process-filter): Process each line separately.
Richard M. Stallman <rms@gnu.org>
parents:
10218
diff
changeset
|
241 (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
|
242 (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
|
243 (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
|
244 (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
|
245 (progn |
c668502d5a93
(server-process-filter): Ignore lines that don't start
Richard M. Stallman <rms@gnu.org>
parents:
12822
diff
changeset
|
246 (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
|
247 (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
|
248 (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
|
249 (while (string-match "[^ ]+ " request) |
c668502d5a93
(server-process-filter): Ignore lines that don't start
Richard M. Stallman <rms@gnu.org>
parents:
12822
diff
changeset
|
250 (let ((arg |
16805
4b8907e5a574
(server-process-filter): Let-bind `pos'.
Richard M. Stallman <rms@gnu.org>
parents:
16789
diff
changeset
|
251 (substring request (match-beginning 0) (1- (match-end 0)))) |
4b8907e5a574
(server-process-filter): Let-bind `pos'.
Richard M. Stallman <rms@gnu.org>
parents:
16789
diff
changeset
|
252 (pos 0)) |
13070
c668502d5a93
(server-process-filter): Ignore lines that don't start
Richard M. Stallman <rms@gnu.org>
parents:
12822
diff
changeset
|
253 (setq request (substring request (match-end 0))) |
15956
0cefc98d243d
(server-visit-files): New argument NOWAIT.
Richard M. Stallman <rms@gnu.org>
parents:
14717
diff
changeset
|
254 (if (string-match "\\`-nowait" arg) |
0cefc98d243d
(server-visit-files): New argument NOWAIT.
Richard M. Stallman <rms@gnu.org>
parents:
14717
diff
changeset
|
255 (setq nowait t) |
38462
a7043adf8855
(server-visit-files): Handle the case the specified
Gerd Moellmann <gerd@gnu.org>
parents:
38412
diff
changeset
|
256 (cond |
a7043adf8855
(server-visit-files): Handle the case the specified
Gerd Moellmann <gerd@gnu.org>
parents:
38412
diff
changeset
|
257 ;; ARG is a line number option. |
a7043adf8855
(server-visit-files): Handle the case the specified
Gerd Moellmann <gerd@gnu.org>
parents:
38412
diff
changeset
|
258 ((string-match "\\`\\+[0-9]+\\'" arg) |
a7043adf8855
(server-visit-files): Handle the case the specified
Gerd Moellmann <gerd@gnu.org>
parents:
38412
diff
changeset
|
259 (setq lineno (string-to-int (substring arg 1)))) |
a7043adf8855
(server-visit-files): Handle the case the specified
Gerd Moellmann <gerd@gnu.org>
parents:
38412
diff
changeset
|
260 ;; ARG is line number:column option. |
a7043adf8855
(server-visit-files): Handle the case the specified
Gerd Moellmann <gerd@gnu.org>
parents:
38412
diff
changeset
|
261 ((string-match "\\`+\\([0-9]+\\):\\([0-9]+\\)\\'" arg) |
a7043adf8855
(server-visit-files): Handle the case the specified
Gerd Moellmann <gerd@gnu.org>
parents:
38412
diff
changeset
|
262 (setq lineno (string-to-int (match-string 1 arg)) |
a7043adf8855
(server-visit-files): Handle the case the specified
Gerd Moellmann <gerd@gnu.org>
parents:
38412
diff
changeset
|
263 columnno (string-to-int (match-string 2 arg)))) |
a7043adf8855
(server-visit-files): Handle the case the specified
Gerd Moellmann <gerd@gnu.org>
parents:
38412
diff
changeset
|
264 (t |
15956
0cefc98d243d
(server-visit-files): New argument NOWAIT.
Richard M. Stallman <rms@gnu.org>
parents:
14717
diff
changeset
|
265 ;; ARG is a file name. |
0cefc98d243d
(server-visit-files): New argument NOWAIT.
Richard M. Stallman <rms@gnu.org>
parents:
14717
diff
changeset
|
266 ;; Collapse multiple slashes to single slashes. |
0cefc98d243d
(server-visit-files): New argument NOWAIT.
Richard M. Stallman <rms@gnu.org>
parents:
14717
diff
changeset
|
267 (setq arg (command-line-normalize-file-name arg)) |
16060
7e6b741a8b6a
(server-process-filter): Undo the quoting with
Richard M. Stallman <rms@gnu.org>
parents:
15956
diff
changeset
|
268 ;; Undo the quoting that emacsclient does |
7e6b741a8b6a
(server-process-filter): Undo the quoting with
Richard M. Stallman <rms@gnu.org>
parents:
15956
diff
changeset
|
269 ;; for certain special characters. |
16075
1fd0ed653ce6
(server-process-filter): Quote with &, not \.
Richard M. Stallman <rms@gnu.org>
parents:
16060
diff
changeset
|
270 (while (string-match "&." arg pos) |
16060
7e6b741a8b6a
(server-process-filter): Undo the quoting with
Richard M. Stallman <rms@gnu.org>
parents:
15956
diff
changeset
|
271 (setq pos (1+ (match-beginning 0))) |
7e6b741a8b6a
(server-process-filter): Undo the quoting with
Richard M. Stallman <rms@gnu.org>
parents:
15956
diff
changeset
|
272 (let ((nextchar (aref arg pos))) |
16075
1fd0ed653ce6
(server-process-filter): Quote with &, not \.
Richard M. Stallman <rms@gnu.org>
parents:
16060
diff
changeset
|
273 (cond ((= nextchar ?&) |
1fd0ed653ce6
(server-process-filter): Quote with &, not \.
Richard M. Stallman <rms@gnu.org>
parents:
16060
diff
changeset
|
274 (setq arg (replace-match "&" t t arg))) |
16060
7e6b741a8b6a
(server-process-filter): Undo the quoting with
Richard M. Stallman <rms@gnu.org>
parents:
15956
diff
changeset
|
275 ((= nextchar ?-) |
7e6b741a8b6a
(server-process-filter): Undo the quoting with
Richard M. Stallman <rms@gnu.org>
parents:
15956
diff
changeset
|
276 (setq arg (replace-match "-" t t arg))) |
7e6b741a8b6a
(server-process-filter): Undo the quoting with
Richard M. Stallman <rms@gnu.org>
parents:
15956
diff
changeset
|
277 (t |
7e6b741a8b6a
(server-process-filter): Undo the quoting with
Richard M. Stallman <rms@gnu.org>
parents:
15956
diff
changeset
|
278 (setq arg (replace-match " " t t arg)))))) |
24474
3b77bf7b709e
(server-start): Set coding system for the server
Kenichi Handa <handa@m17n.org>
parents:
21941
diff
changeset
|
279 ;; Now decode the file name if necessary. |
3b77bf7b709e
(server-start): Set coding system for the server
Kenichi Handa <handa@m17n.org>
parents:
21941
diff
changeset
|
280 (if coding-system |
3b77bf7b709e
(server-start): Set coding system for the server
Kenichi Handa <handa@m17n.org>
parents:
21941
diff
changeset
|
281 (setq arg (decode-coding-string arg coding-system))) |
15956
0cefc98d243d
(server-visit-files): New argument NOWAIT.
Richard M. Stallman <rms@gnu.org>
parents:
14717
diff
changeset
|
282 (setq files |
38462
a7043adf8855
(server-visit-files): Handle the case the specified
Gerd Moellmann <gerd@gnu.org>
parents:
38412
diff
changeset
|
283 (cons (list arg lineno columnno) |
15956
0cefc98d243d
(server-visit-files): New argument NOWAIT.
Richard M. Stallman <rms@gnu.org>
parents:
14717
diff
changeset
|
284 files)) |
38462
a7043adf8855
(server-visit-files): Handle the case the specified
Gerd Moellmann <gerd@gnu.org>
parents:
38412
diff
changeset
|
285 (setq lineno 1) |
a7043adf8855
(server-visit-files): Handle the case the specified
Gerd Moellmann <gerd@gnu.org>
parents:
38412
diff
changeset
|
286 (setq columnno 0)))))) |
41075
9bd3aeb8f5ae
(server-process-filter): Run pore/post-comment-hook
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
40972
diff
changeset
|
287 (run-hooks 'pre-command-hook) |
15956
0cefc98d243d
(server-visit-files): New argument NOWAIT.
Richard M. Stallman <rms@gnu.org>
parents:
14717
diff
changeset
|
288 (server-visit-files files client nowait) |
41075
9bd3aeb8f5ae
(server-process-filter): Run pore/post-comment-hook
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
40972
diff
changeset
|
289 (run-hooks 'post-command-hook) |
13070
c668502d5a93
(server-process-filter): Ignore lines that don't start
Richard M. Stallman <rms@gnu.org>
parents:
12822
diff
changeset
|
290 ;; CLIENT is now a list (CLIENTNUM BUFFERS...) |
25272
db26c1e76313
(server-process-filter): If a client visits no buffers,
Karl Heuer <kwzh@gnu.org>
parents:
24474
diff
changeset
|
291 (if (null (cdr client)) |
db26c1e76313
(server-process-filter): If a client visits no buffers,
Karl Heuer <kwzh@gnu.org>
parents:
24474
diff
changeset
|
292 ;; This client is empty; get rid of it immediately. |
db26c1e76313
(server-process-filter): If a client visits no buffers,
Karl Heuer <kwzh@gnu.org>
parents:
24474
diff
changeset
|
293 (progn |
db26c1e76313
(server-process-filter): If a client visits no buffers,
Karl Heuer <kwzh@gnu.org>
parents:
24474
diff
changeset
|
294 (send-string server-process |
db26c1e76313
(server-process-filter): If a client visits no buffers,
Karl Heuer <kwzh@gnu.org>
parents:
24474
diff
changeset
|
295 (format "Close: %s Done\n" (car client))) |
db26c1e76313
(server-process-filter): If a client visits no buffers,
Karl Heuer <kwzh@gnu.org>
parents:
24474
diff
changeset
|
296 (server-log (format "Close empty client: %s Done\n" (car client)))) |
db26c1e76313
(server-process-filter): If a client visits no buffers,
Karl Heuer <kwzh@gnu.org>
parents:
24474
diff
changeset
|
297 ;; We visited some buffer for this client. |
db26c1e76313
(server-process-filter): If a client visits no buffers,
Karl Heuer <kwzh@gnu.org>
parents:
24474
diff
changeset
|
298 (or nowait |
db26c1e76313
(server-process-filter): If a client visits no buffers,
Karl Heuer <kwzh@gnu.org>
parents:
24474
diff
changeset
|
299 (setq server-clients (cons client server-clients))) |
db26c1e76313
(server-process-filter): If a client visits no buffers,
Karl Heuer <kwzh@gnu.org>
parents:
24474
diff
changeset
|
300 (server-switch-buffer (nth 1 client)) |
db26c1e76313
(server-process-filter): If a client visits no buffers,
Karl Heuer <kwzh@gnu.org>
parents:
24474
diff
changeset
|
301 (run-hooks 'server-switch-hook) |
db26c1e76313
(server-process-filter): If a client visits no buffers,
Karl Heuer <kwzh@gnu.org>
parents:
24474
diff
changeset
|
302 (message (substitute-command-keys |
db26c1e76313
(server-process-filter): If a client visits no buffers,
Karl Heuer <kwzh@gnu.org>
parents:
24474
diff
changeset
|
303 "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
|
304 ;; 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
|
305 (setq server-previous-string string)) |
50 | 306 |
15956
0cefc98d243d
(server-visit-files): New argument NOWAIT.
Richard M. Stallman <rms@gnu.org>
parents:
14717
diff
changeset
|
307 (defun server-visit-files (files client &optional nowait) |
50 | 308 "Finds FILES and returns the list CLIENT with the buffers nconc'd. |
38462
a7043adf8855
(server-visit-files): Handle the case the specified
Gerd Moellmann <gerd@gnu.org>
parents:
38412
diff
changeset
|
309 FILES is an alist whose elements are (FILENAME LINENUMBER COLUMNNUMBER). |
15956
0cefc98d243d
(server-visit-files): New argument NOWAIT.
Richard M. Stallman <rms@gnu.org>
parents:
14717
diff
changeset
|
310 NOWAIT non-nil means this client is not waiting for the results, |
0cefc98d243d
(server-visit-files): New argument NOWAIT.
Richard M. Stallman <rms@gnu.org>
parents:
14717
diff
changeset
|
311 so don't mark these buffers specially, just visit them normally." |
7736
8c8410bc0f1b
(server-visit-files): Bind last-nonmenu-event.
Richard M. Stallman <rms@gnu.org>
parents:
7597
diff
changeset
|
312 ;; 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
|
313 (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
|
314 ;; 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
|
315 ;; 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
|
316 ;; 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
|
317 (unwind-protect |
56d7c4beae9f
(server-visit-files): Restore current-buffer by hand,
Richard M. Stallman <rms@gnu.org>
parents:
4096
diff
changeset
|
318 (while files |
31008
ac8beefc28a9
(server-kill-new-buffers): New user option.
Gerd Moellmann <gerd@gnu.org>
parents:
30004
diff
changeset
|
319 ;; If there is an existing buffer modified or the file is |
ac8beefc28a9
(server-kill-new-buffers): New user option.
Gerd Moellmann <gerd@gnu.org>
parents:
30004
diff
changeset
|
320 ;; modified, revert it. If there is an existing buffer with |
ac8beefc28a9
(server-kill-new-buffers): New user option.
Gerd Moellmann <gerd@gnu.org>
parents:
30004
diff
changeset
|
321 ;; deleted file, offer to write it. |
4500
56d7c4beae9f
(server-visit-files): Restore current-buffer by hand,
Richard M. Stallman <rms@gnu.org>
parents:
4096
diff
changeset
|
322 (let* ((filen (car (car files))) |
56d7c4beae9f
(server-visit-files): Restore current-buffer by hand,
Richard M. Stallman <rms@gnu.org>
parents:
4096
diff
changeset
|
323 (obuf (get-file-buffer filen))) |
34344
a160265d0a06
(server-visit-files): Push files on file-name-history.
Gerd Moellmann <gerd@gnu.org>
parents:
31008
diff
changeset
|
324 (push filen file-name-history) |
4500
56d7c4beae9f
(server-visit-files): Restore current-buffer by hand,
Richard M. Stallman <rms@gnu.org>
parents:
4096
diff
changeset
|
325 (if (and obuf (set-buffer obuf)) |
37273
e558d3f235fd
(server-visit-files): Set server-existing-buffer
Gerd Moellmann <gerd@gnu.org>
parents:
36304
diff
changeset
|
326 (progn |
e558d3f235fd
(server-visit-files): Set server-existing-buffer
Gerd Moellmann <gerd@gnu.org>
parents:
36304
diff
changeset
|
327 (cond ((file-exists-p filen) |
e558d3f235fd
(server-visit-files): Set server-existing-buffer
Gerd Moellmann <gerd@gnu.org>
parents:
36304
diff
changeset
|
328 (if (or (not (verify-visited-file-modtime obuf)) |
e558d3f235fd
(server-visit-files): Set server-existing-buffer
Gerd Moellmann <gerd@gnu.org>
parents:
36304
diff
changeset
|
329 (buffer-modified-p obuf)) |
e558d3f235fd
(server-visit-files): Set server-existing-buffer
Gerd Moellmann <gerd@gnu.org>
parents:
36304
diff
changeset
|
330 (revert-buffer t nil))) |
e558d3f235fd
(server-visit-files): Set server-existing-buffer
Gerd Moellmann <gerd@gnu.org>
parents:
36304
diff
changeset
|
331 (t |
e558d3f235fd
(server-visit-files): Set server-existing-buffer
Gerd Moellmann <gerd@gnu.org>
parents:
36304
diff
changeset
|
332 (if (y-or-n-p |
e558d3f235fd
(server-visit-files): Set server-existing-buffer
Gerd Moellmann <gerd@gnu.org>
parents:
36304
diff
changeset
|
333 (concat "File no longer exists: " |
e558d3f235fd
(server-visit-files): Set server-existing-buffer
Gerd Moellmann <gerd@gnu.org>
parents:
36304
diff
changeset
|
334 filen |
e558d3f235fd
(server-visit-files): Set server-existing-buffer
Gerd Moellmann <gerd@gnu.org>
parents:
36304
diff
changeset
|
335 ", write buffer to file? ")) |
e558d3f235fd
(server-visit-files): Set server-existing-buffer
Gerd Moellmann <gerd@gnu.org>
parents:
36304
diff
changeset
|
336 (write-file filen)))) |
e558d3f235fd
(server-visit-files): Set server-existing-buffer
Gerd Moellmann <gerd@gnu.org>
parents:
36304
diff
changeset
|
337 (setq server-existing-buffer t) |
e558d3f235fd
(server-visit-files): Set server-existing-buffer
Gerd Moellmann <gerd@gnu.org>
parents:
36304
diff
changeset
|
338 (goto-line (nth 1 (car files)))) |
4500
56d7c4beae9f
(server-visit-files): Restore current-buffer by hand,
Richard M. Stallman <rms@gnu.org>
parents:
4096
diff
changeset
|
339 (set-buffer (find-file-noselect filen)) |
37273
e558d3f235fd
(server-visit-files): Set server-existing-buffer
Gerd Moellmann <gerd@gnu.org>
parents:
36304
diff
changeset
|
340 (goto-line (nth 1 (car files))) |
38462
a7043adf8855
(server-visit-files): Handle the case the specified
Gerd Moellmann <gerd@gnu.org>
parents:
38412
diff
changeset
|
341 (let ((column-number (nth 2 (car files)))) |
a7043adf8855
(server-visit-files): Handle the case the specified
Gerd Moellmann <gerd@gnu.org>
parents:
38412
diff
changeset
|
342 (when (> column-number 0) |
38512
c9de551dd922
(server-visit-files): Fix variable name typo.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38462
diff
changeset
|
343 (move-to-column (1- column-number)))) |
4500
56d7c4beae9f
(server-visit-files): Restore current-buffer by hand,
Richard M. Stallman <rms@gnu.org>
parents:
4096
diff
changeset
|
344 (run-hooks 'server-visit-hook))) |
15956
0cefc98d243d
(server-visit-files): New argument NOWAIT.
Richard M. Stallman <rms@gnu.org>
parents:
14717
diff
changeset
|
345 (if (not nowait) |
0cefc98d243d
(server-visit-files): New argument NOWAIT.
Richard M. Stallman <rms@gnu.org>
parents:
14717
diff
changeset
|
346 (setq server-buffer-clients |
0cefc98d243d
(server-visit-files): New argument NOWAIT.
Richard M. Stallman <rms@gnu.org>
parents:
14717
diff
changeset
|
347 (cons (car client) server-buffer-clients))) |
4500
56d7c4beae9f
(server-visit-files): Restore current-buffer by hand,
Richard M. Stallman <rms@gnu.org>
parents:
4096
diff
changeset
|
348 (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
|
349 (setq files (cdr files))) |
56d7c4beae9f
(server-visit-files): Restore current-buffer by hand,
Richard M. Stallman <rms@gnu.org>
parents:
4096
diff
changeset
|
350 (set-buffer obuf)) |
50 | 351 (nconc client client-record))) |
352 | |
17712
41a4624c1e79
(server-buffer-done): New arg FOR-KILLING.
Richard M. Stallman <rms@gnu.org>
parents:
17434
diff
changeset
|
353 (defun server-buffer-done (buffer &optional for-killing) |
50 | 354 "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
|
355 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
|
356 NEXT-BUFFER is another server buffer, as a suggestion for what to select next, |
21941
1baa3e876ad0
(server-buffer-done): Bind server-kill-buffer-running
Richard M. Stallman <rms@gnu.org>
parents:
19418
diff
changeset
|
357 or nil. KILLED is t if we killed BUFFER |
1baa3e876ad0
(server-buffer-done): Bind server-kill-buffer-running
Richard M. Stallman <rms@gnu.org>
parents:
19418
diff
changeset
|
358 \(typically, because it was visiting a temp file)." |
50 | 359 (let ((running (eq (process-status server-process) 'run)) |
360 (next-buffer nil) | |
10961
88cba63f2a9b
(server-buffer-done): Return a list
Richard M. Stallman <rms@gnu.org>
parents:
10281
diff
changeset
|
361 (killed nil) |
12822
6fb78108d62d
(server-buffer-done): Pause between client commands,
Richard M. Stallman <rms@gnu.org>
parents:
12411
diff
changeset
|
362 (first t) |
50 | 363 (old-clients server-clients)) |
364 (while old-clients | |
365 (let ((client (car old-clients))) | |
366 (or next-buffer | |
367 (setq next-buffer (nth 1 (memq buffer client)))) | |
368 (delq buffer client) | |
10281
44d98e169823
(server-process-filter): Process each line separately.
Richard M. Stallman <rms@gnu.org>
parents:
10218
diff
changeset
|
369 ;; Delete all dead buffers from CLIENT. |
44d98e169823
(server-process-filter): Process each line separately.
Richard M. Stallman <rms@gnu.org>
parents:
10218
diff
changeset
|
370 (let ((tail client)) |
44d98e169823
(server-process-filter): Process each line separately.
Richard M. Stallman <rms@gnu.org>
parents:
10218
diff
changeset
|
371 (while tail |
44d98e169823
(server-process-filter): Process each line separately.
Richard M. Stallman <rms@gnu.org>
parents:
10218
diff
changeset
|
372 (and (bufferp (car tail)) |
44d98e169823
(server-process-filter): Process each line separately.
Richard M. Stallman <rms@gnu.org>
parents:
10218
diff
changeset
|
373 (null (buffer-name (car tail))) |
44d98e169823
(server-process-filter): Process each line separately.
Richard M. Stallman <rms@gnu.org>
parents:
10218
diff
changeset
|
374 (delq (car tail) client)) |
44d98e169823
(server-process-filter): Process each line separately.
Richard M. Stallman <rms@gnu.org>
parents:
10218
diff
changeset
|
375 (setq tail (cdr tail)))) |
50 | 376 ;; If client now has no pending buffers, |
377 ;; tell it that it is done, and forget it entirely. | |
378 (if (cdr client) nil | |
379 (if running | |
380 (progn | |
12822
6fb78108d62d
(server-buffer-done): Pause between client commands,
Richard M. Stallman <rms@gnu.org>
parents:
12411
diff
changeset
|
381 ;; 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
|
382 ;; It cannot handle that. |
6fb78108d62d
(server-buffer-done): Pause between client commands,
Richard M. Stallman <rms@gnu.org>
parents:
12411
diff
changeset
|
383 (or first (sit-for 1)) |
6fb78108d62d
(server-buffer-done): Pause between client commands,
Richard M. Stallman <rms@gnu.org>
parents:
12411
diff
changeset
|
384 (setq first nil) |
50 | 385 (send-string server-process |
386 (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
|
387 (server-log (format "Close: %s Done\n" (car client))))) |
50 | 388 (setq server-clients (delq client server-clients)))) |
389 (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
|
390 (if (and (bufferp buffer) (buffer-name buffer)) |
21941
1baa3e876ad0
(server-buffer-done): Bind server-kill-buffer-running
Richard M. Stallman <rms@gnu.org>
parents:
19418
diff
changeset
|
391 ;; We may or may not kill this buffer; |
1baa3e876ad0
(server-buffer-done): Bind server-kill-buffer-running
Richard M. Stallman <rms@gnu.org>
parents:
19418
diff
changeset
|
392 ;; if we do, do not call server-buffer-done recursively |
1baa3e876ad0
(server-buffer-done): Bind server-kill-buffer-running
Richard M. Stallman <rms@gnu.org>
parents:
19418
diff
changeset
|
393 ;; from kill-buffer-hook. |
1baa3e876ad0
(server-buffer-done): Bind server-kill-buffer-running
Richard M. Stallman <rms@gnu.org>
parents:
19418
diff
changeset
|
394 (let ((server-kill-buffer-running t)) |
6176
1dbec303c87b
(kill-emacs-query-functions, kill-buffer-query-functions):
Richard M. Stallman <rms@gnu.org>
parents:
5749
diff
changeset
|
395 (save-excursion |
1dbec303c87b
(kill-emacs-query-functions, kill-buffer-query-functions):
Richard M. Stallman <rms@gnu.org>
parents:
5749
diff
changeset
|
396 (set-buffer buffer) |
7597
99a600c67e82
(server-done-hook): New hook.
Richard M. Stallman <rms@gnu.org>
parents:
7553
diff
changeset
|
397 (setq server-buffer-clients nil) |
99a600c67e82
(server-done-hook): New hook.
Richard M. Stallman <rms@gnu.org>
parents:
7553
diff
changeset
|
398 (run-hooks 'server-done-hook)) |
21941
1baa3e876ad0
(server-buffer-done): Bind server-kill-buffer-running
Richard M. Stallman <rms@gnu.org>
parents:
19418
diff
changeset
|
399 ;; Notice whether server-done-hook killed the buffer. |
1baa3e876ad0
(server-buffer-done): Bind server-kill-buffer-running
Richard M. Stallman <rms@gnu.org>
parents:
19418
diff
changeset
|
400 (if (null (buffer-name buffer)) |
1baa3e876ad0
(server-buffer-done): Bind server-kill-buffer-running
Richard M. Stallman <rms@gnu.org>
parents:
19418
diff
changeset
|
401 (setq killed t) |
1baa3e876ad0
(server-buffer-done): Bind server-kill-buffer-running
Richard M. Stallman <rms@gnu.org>
parents:
19418
diff
changeset
|
402 ;; Don't bother killing or burying the buffer |
1baa3e876ad0
(server-buffer-done): Bind server-kill-buffer-running
Richard M. Stallman <rms@gnu.org>
parents:
19418
diff
changeset
|
403 ;; when we are called from kill-buffer. |
1baa3e876ad0
(server-buffer-done): Bind server-kill-buffer-running
Richard M. Stallman <rms@gnu.org>
parents:
19418
diff
changeset
|
404 (unless for-killing |
31008
ac8beefc28a9
(server-kill-new-buffers): New user option.
Gerd Moellmann <gerd@gnu.org>
parents:
30004
diff
changeset
|
405 (when (and (not killed) |
ac8beefc28a9
(server-kill-new-buffers): New user option.
Gerd Moellmann <gerd@gnu.org>
parents:
30004
diff
changeset
|
406 server-kill-new-buffers |
40915
e26c1e76e1ca
(server-buffer-done): Test of server-existing-buffer was backwards.
Richard M. Stallman <rms@gnu.org>
parents:
39177
diff
changeset
|
407 (with-current-buffer buffer |
e26c1e76e1ca
(server-buffer-done): Test of server-existing-buffer was backwards.
Richard M. Stallman <rms@gnu.org>
parents:
39177
diff
changeset
|
408 (not server-existing-buffer))) |
31008
ac8beefc28a9
(server-kill-new-buffers): New user option.
Gerd Moellmann <gerd@gnu.org>
parents:
30004
diff
changeset
|
409 (setq killed t) |
34685
7218b9b8c2ad
(server-buffer-done): Bury the buffer before
Gerd Moellmann <gerd@gnu.org>
parents:
34344
diff
changeset
|
410 (bury-buffer buffer) |
31008
ac8beefc28a9
(server-kill-new-buffers): New user option.
Gerd Moellmann <gerd@gnu.org>
parents:
30004
diff
changeset
|
411 (kill-buffer buffer)) |
ac8beefc28a9
(server-kill-new-buffers): New user option.
Gerd Moellmann <gerd@gnu.org>
parents:
30004
diff
changeset
|
412 (unless killed |
ac8beefc28a9
(server-kill-new-buffers): New user option.
Gerd Moellmann <gerd@gnu.org>
parents:
30004
diff
changeset
|
413 (if (server-temp-file-p buffer) |
ac8beefc28a9
(server-kill-new-buffers): New user option.
Gerd Moellmann <gerd@gnu.org>
parents:
30004
diff
changeset
|
414 (progn |
ac8beefc28a9
(server-kill-new-buffers): New user option.
Gerd Moellmann <gerd@gnu.org>
parents:
30004
diff
changeset
|
415 (kill-buffer buffer) |
ac8beefc28a9
(server-kill-new-buffers): New user option.
Gerd Moellmann <gerd@gnu.org>
parents:
30004
diff
changeset
|
416 (setq killed t)) |
ac8beefc28a9
(server-kill-new-buffers): New user option.
Gerd Moellmann <gerd@gnu.org>
parents:
30004
diff
changeset
|
417 (bury-buffer buffer))))))) |
10961
88cba63f2a9b
(server-buffer-done): Return a list
Richard M. Stallman <rms@gnu.org>
parents:
10281
diff
changeset
|
418 (list next-buffer killed))) |
50 | 419 |
420 (defun server-temp-file-p (buffer) | |
421 "Return non-nil if BUFFER contains a file considered temporary. | |
422 These are files whose names suggest they are repeatedly | |
423 reused to pass information to another program. | |
424 | |
425 The variable `server-temp-file-regexp' controls which filenames | |
426 are considered temporary." | |
427 (and (buffer-file-name buffer) | |
428 (string-match server-temp-file-regexp (buffer-file-name buffer)))) | |
429 | |
430 (defun server-done () | |
1540 | 431 "Offer to save current buffer, mark it as \"done\" for clients. |
40972
cb428483fb22
(server-edit, server-done): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
40915
diff
changeset
|
432 This kills or buries the buffer, then returns a list |
cb428483fb22
(server-edit, server-done): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
40915
diff
changeset
|
433 of the form (NEXT-BUFFER KILLED). NEXT-BUFFER is another server buffer, |
cb428483fb22
(server-edit, server-done): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
40915
diff
changeset
|
434 as a suggestion for what to select next, or nil. |
cb428483fb22
(server-edit, server-done): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
40915
diff
changeset
|
435 KILLED is t if we killed BUFFER, which happens if it was created |
cb428483fb22
(server-edit, server-done): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
40915
diff
changeset
|
436 specifically for the clients and did not exist before their request for it." |
50 | 437 (let ((buffer (current-buffer))) |
438 (if server-buffer-clients | |
7553
e473c5ad9e7d
(server-done): Never kill buffer here.
Richard M. Stallman <rms@gnu.org>
parents:
7300
diff
changeset
|
439 (progn |
50 | 440 (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
|
441 ;; 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
|
442 ;; (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
|
443 (let ((version-control nil) |
badd80e9e4fc
(server-done): Let save-buffer make the backup,
Richard M. Stallman <rms@gnu.org>
parents:
3746
diff
changeset
|
444 (buffer-backed-up nil)) |
7553
e473c5ad9e7d
(server-done): Never kill buffer here.
Richard M. Stallman <rms@gnu.org>
parents:
7300
diff
changeset
|
445 (save-buffer)) |
50 | 446 (if (and (buffer-modified-p) |
17434
5fb0f4a5336f
(server-done): If buffer visits no file, don't offer save.
Richard M. Stallman <rms@gnu.org>
parents:
16805
diff
changeset
|
447 buffer-file-name |
50 | 448 (y-or-n-p (concat "Save file " buffer-file-name "? "))) |
449 (save-buffer buffer))) | |
7553
e473c5ad9e7d
(server-done): Never kill buffer here.
Richard M. Stallman <rms@gnu.org>
parents:
7300
diff
changeset
|
450 (server-buffer-done buffer))))) |
6176
1dbec303c87b
(kill-emacs-query-functions, kill-buffer-query-functions):
Richard M. Stallman <rms@gnu.org>
parents:
5749
diff
changeset
|
451 |
9883 | 452 ;; Ask before killing a server buffer. |
453 ;; It was suggested to release its client instead, | |
454 ;; but I think that is dangerous--the client would proceed | |
455 ;; 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
|
456 (defun server-kill-buffer-query-function () |
0983fe01e614
(server-kill-emacs-query-function)
Richard M. Stallman <rms@gnu.org>
parents:
6960
diff
changeset
|
457 (or (not server-buffer-clients) |
0983fe01e614
(server-kill-emacs-query-function)
Richard M. Stallman <rms@gnu.org>
parents:
6960
diff
changeset
|
458 (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
|
459 (buffer-name (current-buffer)))))) |
0983fe01e614
(server-kill-emacs-query-function)
Richard M. Stallman <rms@gnu.org>
parents:
6960
diff
changeset
|
460 |
6176
1dbec303c87b
(kill-emacs-query-functions, kill-buffer-query-functions):
Richard M. Stallman <rms@gnu.org>
parents:
5749
diff
changeset
|
461 (add-hook 'kill-buffer-query-functions |
6993
0983fe01e614
(server-kill-emacs-query-function)
Richard M. Stallman <rms@gnu.org>
parents:
6960
diff
changeset
|
462 '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
|
463 |
6993
0983fe01e614
(server-kill-emacs-query-function)
Richard M. Stallman <rms@gnu.org>
parents:
6960
diff
changeset
|
464 (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
|
465 (let (live-client |
8c8410bc0f1b
(server-visit-files): Bind last-nonmenu-event.
Richard M. Stallman <rms@gnu.org>
parents:
7597
diff
changeset
|
466 (tail server-clients)) |
8c8410bc0f1b
(server-visit-files): Bind last-nonmenu-event.
Richard M. Stallman <rms@gnu.org>
parents:
7597
diff
changeset
|
467 ;; 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
|
468 (while tail |
8c8410bc0f1b
(server-visit-files): Bind last-nonmenu-event.
Richard M. Stallman <rms@gnu.org>
parents:
7597
diff
changeset
|
469 (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
|
470 (setq live-client t)) |
8c8410bc0f1b
(server-visit-files): Bind last-nonmenu-event.
Richard M. Stallman <rms@gnu.org>
parents:
7597
diff
changeset
|
471 (setq tail (cdr tail))) |
8c8410bc0f1b
(server-visit-files): Bind last-nonmenu-event.
Richard M. Stallman <rms@gnu.org>
parents:
7597
diff
changeset
|
472 (or (not live-client) |
8c8410bc0f1b
(server-visit-files): Bind last-nonmenu-event.
Richard M. Stallman <rms@gnu.org>
parents:
7597
diff
changeset
|
473 (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
|
474 |
0983fe01e614
(server-kill-emacs-query-function)
Richard M. Stallman <rms@gnu.org>
parents:
6960
diff
changeset
|
475 (add-hook 'kill-emacs-query-functions 'server-kill-emacs-query-function) |
17712
41a4624c1e79
(server-buffer-done): New arg FOR-KILLING.
Richard M. Stallman <rms@gnu.org>
parents:
17434
diff
changeset
|
476 |
18049
f1fa9625e2b9
(server-kill-buffer): Prevent infinite recursion.
Richard M. Stallman <rms@gnu.org>
parents:
17970
diff
changeset
|
477 (defvar server-kill-buffer-running nil |
21941
1baa3e876ad0
(server-buffer-done): Bind server-kill-buffer-running
Richard M. Stallman <rms@gnu.org>
parents:
19418
diff
changeset
|
478 "Non-nil while `server-kill-buffer' or `server-buffer-done' is running.") |
18049
f1fa9625e2b9
(server-kill-buffer): Prevent infinite recursion.
Richard M. Stallman <rms@gnu.org>
parents:
17970
diff
changeset
|
479 |
17712
41a4624c1e79
(server-buffer-done): New arg FOR-KILLING.
Richard M. Stallman <rms@gnu.org>
parents:
17434
diff
changeset
|
480 ;; When a buffer is killed, inform the clients. |
41a4624c1e79
(server-buffer-done): New arg FOR-KILLING.
Richard M. Stallman <rms@gnu.org>
parents:
17434
diff
changeset
|
481 (add-hook 'kill-buffer-hook 'server-kill-buffer) |
41a4624c1e79
(server-buffer-done): New arg FOR-KILLING.
Richard M. Stallman <rms@gnu.org>
parents:
17434
diff
changeset
|
482 (defun server-kill-buffer () |
18049
f1fa9625e2b9
(server-kill-buffer): Prevent infinite recursion.
Richard M. Stallman <rms@gnu.org>
parents:
17970
diff
changeset
|
483 ;; Prevent infinite recursion if user has made server-done-hook |
f1fa9625e2b9
(server-kill-buffer): Prevent infinite recursion.
Richard M. Stallman <rms@gnu.org>
parents:
17970
diff
changeset
|
484 ;; call kill-buffer. |
f1fa9625e2b9
(server-kill-buffer): Prevent infinite recursion.
Richard M. Stallman <rms@gnu.org>
parents:
17970
diff
changeset
|
485 (or server-kill-buffer-running |
21941
1baa3e876ad0
(server-buffer-done): Bind server-kill-buffer-running
Richard M. Stallman <rms@gnu.org>
parents:
19418
diff
changeset
|
486 (and server-buffer-clients |
1baa3e876ad0
(server-buffer-done): Bind server-kill-buffer-running
Richard M. Stallman <rms@gnu.org>
parents:
19418
diff
changeset
|
487 (let ((server-kill-buffer-running t)) |
1baa3e876ad0
(server-buffer-done): Bind server-kill-buffer-running
Richard M. Stallman <rms@gnu.org>
parents:
19418
diff
changeset
|
488 (when server-process |
1baa3e876ad0
(server-buffer-done): Bind server-kill-buffer-running
Richard M. Stallman <rms@gnu.org>
parents:
19418
diff
changeset
|
489 (server-buffer-done (current-buffer) t)))))) |
50 | 490 |
491 (defun server-edit (&optional arg) | |
492 "Switch to next server editing buffer; say \"Done\" for current buffer. | |
493 If a server buffer is current, it is marked \"done\" and optionally saved. | |
40972
cb428483fb22
(server-edit, server-done): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
40915
diff
changeset
|
494 The buffer is also killed if it did not exist before the clients asked for it. |
50 | 495 When all of a client's buffers are marked as \"done\", the client is notified. |
496 | |
497 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
|
498 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
|
499 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
|
500 prevent a backup for it.) The variable `server-temp-file-regexp' controls |
50 | 501 which filenames are considered temporary. |
502 | |
503 If invoked with a prefix argument, or if there is no server process running, | |
504 starts server process and that is all. Invoked by \\[server-edit]." | |
505 (interactive "P") | |
506 (if (or arg | |
507 (not server-process) | |
508 (memq (process-status server-process) '(signal exit))) | |
509 (server-start nil) | |
10961
88cba63f2a9b
(server-buffer-done): Return a list
Richard M. Stallman <rms@gnu.org>
parents:
10281
diff
changeset
|
510 (apply 'server-switch-buffer (server-done)))) |
50 | 511 |
11329
ecbfde696360
(server-switch-buffer): Make first arg optional too;
Roland McGrath <roland@gnu.org>
parents:
11235
diff
changeset
|
512 (defun server-switch-buffer (&optional next-buffer killed-one) |
50 | 513 "Switch to another buffer, preferably one that has a client. |
514 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
|
515 ;; 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
|
516 ;; 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
|
517 ;; 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
|
518 ;; 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
|
519 (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
|
520 (window-live-p server-window)) |
3661
65d530f613a8
(server-window): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
2866
diff
changeset
|
521 (select-window server-window)) |
65d530f613a8
(server-window): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
2866
diff
changeset
|
522 ((framep server-window) |
10218
b78b8c445f33
(server-switch-buffer): Cope with dead frames and windows.
Richard M. Stallman <rms@gnu.org>
parents:
9883
diff
changeset
|
523 (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
|
524 (setq server-window (make-frame))) |
3661
65d530f613a8
(server-window): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
2866
diff
changeset
|
525 (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
|
526 (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
|
527 (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
|
528 ;; Move to a non-dedicated window, if we have one. |
36304
eecd47acee50
(server-switch-buffer): Only switch window if the current one is dedicated.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
34790
diff
changeset
|
529 (when (window-dedicated-p (selected-window)) |
39177
11c0c672f2e2
(server-switch-buffer): Use get-window-with-predicate.
Gerd Moellmann <gerd@gnu.org>
parents:
38512
diff
changeset
|
530 (select-window (get-window-with-predicate |
11c0c672f2e2
(server-switch-buffer): Use get-window-with-predicate.
Gerd Moellmann <gerd@gnu.org>
parents:
38512
diff
changeset
|
531 (lambda (w) (not (window-dedicated-p w))) |
11c0c672f2e2
(server-switch-buffer): Use get-window-with-predicate.
Gerd Moellmann <gerd@gnu.org>
parents:
38512
diff
changeset
|
532 'nomini 'visible (selected-window)))) |
9252
8c659649649e
(server-switch-buffer): Don't go to an invisible frame.
Richard M. Stallman <rms@gnu.org>
parents:
8733
diff
changeset
|
533 (set-window-dedicated-p (selected-window) nil) |
50 | 534 (if next-buffer |
535 (if (and (bufferp next-buffer) | |
536 (buffer-name next-buffer)) | |
537 (switch-to-buffer next-buffer) | |
538 ;; If NEXT-BUFFER is a dead buffer, | |
539 ;; remove the server records for it | |
540 ;; 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
|
541 (apply 'server-switch-buffer |
88cba63f2a9b
(server-buffer-done): Return a list
Richard M. Stallman <rms@gnu.org>
parents:
10281
diff
changeset
|
542 (server-buffer-done next-buffer))) |
50 | 543 (if server-clients |
10961
88cba63f2a9b
(server-buffer-done): Return a list
Richard M. Stallman <rms@gnu.org>
parents:
10281
diff
changeset
|
544 (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
|
545 (if (not killed-one) |
88cba63f2a9b
(server-buffer-done): Return a list
Richard M. Stallman <rms@gnu.org>
parents:
10281
diff
changeset
|
546 (switch-to-buffer (other-buffer)))))) |
50 | 547 |
548 (global-set-key "\C-x#" 'server-edit) | |
1079 | 549 |
550 (provide 'server) | |
658
7cbd4fcd8b0f
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
445
diff
changeset
|
551 |
7cbd4fcd8b0f
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
445
diff
changeset
|
552 ;;; server.el ends here |