aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChong Yidong2009-01-23 04:52:40 +0000
committerChong Yidong2009-01-23 04:52:40 +0000
commit77c4d02405dd9182559df7132d1e66f864d3f09b (patch)
treecf68cd6e4a0f917ed6c1a21856f16ed69a330c4b
parenta861b8d608cafec1a88d177f4ce8f467b698afbb (diff)
downloademacs-77c4d02405dd9182559df7132d1e66f864d3f09b.tar.gz
emacs-77c4d02405dd9182559df7132d1e66f864d3f09b.zip
(server-name): Make it a defcustom.
-rw-r--r--lisp/server.el8
1 files changed, 7 insertions, 1 deletions
diff --git a/lisp/server.el b/lisp/server.el
index d58eb20e5e7..5f7cc50e35a 100644
--- a/lisp/server.el
+++ b/lisp/server.el
@@ -200,7 +200,13 @@ This means that the server should not kill the buffer when you say you
200are done with it in the server.") 200are done with it in the server.")
201(make-variable-buffer-local 'server-existing-buffer) 201(make-variable-buffer-local 'server-existing-buffer)
202 202
203(defvar server-name "server") 203(defcustom server-name "server"
204 "The name of the Emacs server, if this Emacs process creates one.
205The command `server-start' makes use of this. It should not be
206changed while a server is running."
207 :group 'server
208 :type 'string
209 :version "23.1")
204 210
205(defvar server-socket-dir 211(defvar server-socket-dir
206 (and (featurep 'make-network-process '(:family local)) 212 (and (featurep 'make-network-process '(:family local))