1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-11-26 07:33:47 +00:00

(server-name): Make it a defcustom.

This commit is contained in:
Chong Yidong 2009-01-23 04:52:40 +00:00
parent a861b8d608
commit 77c4d02405

View File

@ -200,7 +200,13 @@ This means that the server should not kill the buffer when you say you
are done with it in the server.")
(make-variable-buffer-local 'server-existing-buffer)
(defvar server-name "server")
(defcustom server-name "server"
"The name of the Emacs server, if this Emacs process creates one.
The command `server-start' makes use of this. It should not be
changed while a server is running."
:group 'server
:type 'string
:version "23.1")
(defvar server-socket-dir
(and (featurep 'make-network-process '(:family local))