diff options
| author | Glenn Morris | 2007-10-06 01:45:16 +0000 |
|---|---|---|
| committer | Glenn Morris | 2007-10-06 01:45:16 +0000 |
| commit | 23b7c55689a2990eafa55af16ced18d7f41a6463 (patch) | |
| tree | e00b00887194371cdff5b7a0bf54a536bf0508d6 | |
| parent | 5a25a89581d76305989af359a2bd6472a02360ca (diff) | |
| download | emacs-23b7c55689a2990eafa55af16ced18d7f41a6463.tar.gz emacs-23b7c55689a2990eafa55af16ced18d7f41a6463.zip | |
Chris Moore <dooglus at gmail.com>
(server-kill-new-buffers): Doc fix.
| -rw-r--r-- | lisp/ChangeLog | 4 | ||||
| -rw-r--r-- | lisp/server.el | 6 |
2 files changed, 7 insertions, 3 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 5cd9c870df1..976caa10356 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2007-10-05 Chris Moore <dooglus@gmail.com> | ||
| 2 | |||
| 3 | * server.el (server-kill-new-buffers): Doc fix. | ||
| 4 | |||
| 1 | 2007-10-05 Juanma Barranquero <lekktu@gmail.com> | 5 | 2007-10-05 Juanma Barranquero <lekktu@gmail.com> |
| 2 | 6 | ||
| 3 | * bs.el (bs-mode): Make sure global-font-lock-mode doesn't | 7 | * bs.el (bs-mode): Make sure global-font-lock-mode doesn't |
diff --git a/lisp/server.el b/lisp/server.el index 8f7f7785392..8eb9dbb685e 100644 --- a/lisp/server.el +++ b/lisp/server.el | |||
| @@ -178,10 +178,10 @@ invoke the Emacs server." | |||
| 178 | (defcustom server-kill-new-buffers t | 178 | (defcustom server-kill-new-buffers t |
| 179 | "Whether to kill buffers when done with them. | 179 | "Whether to kill buffers when done with them. |
| 180 | If non-nil, kill a buffer unless it already existed before editing | 180 | If non-nil, kill a buffer unless it already existed before editing |
| 181 | it with Emacs server. If nil, kill only buffers as specified by | 181 | it with the Emacs server. If nil, kill only buffers as specified by |
| 182 | `server-temp-file-regexp'. | 182 | `server-temp-file-regexp'. |
| 183 | Please note that only buffers are killed that still have a client, | 183 | Please note that only buffers that still have a client are killed, |
| 184 | i.e. buffers visited which \"emacsclient --no-wait\" are never killed in | 184 | i.e. buffers visited with \"emacsclient --no-wait\" are never killed in |
| 185 | this way." | 185 | this way." |
| 186 | :group 'server | 186 | :group 'server |
| 187 | :type 'boolean | 187 | :type 'boolean |