1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-01-29 19:48:19 +00:00

* lisp/server.el (server-port): Doc fix.

This commit is contained in:
Chong Yidong 2011-08-28 14:46:38 -04:00
parent ef8cdf8c2a
commit 7a1ff57fac
2 changed files with 8 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2011-08-28 Chong Yidong <cyd@stupidchicken.com>
* server.el (server-port): Doc fix.
2011-08-28 Alan Mackenzie <acm@muc.de>
* progmodes/cc-fonts.el

View File

@ -112,7 +112,10 @@ If set, the server accepts remote connections; otherwise it is local."
(put 'server-host 'risky-local-variable t)
(defcustom server-port nil
"The port number that the server process should listen on."
"The port number that the server process should listen on.
This variable only takes effect when the Emacs server is using
TCP instead of local sockets. A nil value means to use a random
port number."
:group 'server
:type '(choice
(string :tag "Port number")