diff options
| author | Eli Zaretskii | 2019-01-04 15:55:59 +0200 |
|---|---|---|
| committer | Eli Zaretskii | 2019-01-04 15:55:59 +0200 |
| commit | f6eacc468b8539be482260fa569e7b5ece07f4a2 (patch) | |
| tree | b15f8099a23bacfcf562c23d1fef5011ef0bea35 /lisp | |
| parent | fe4922cbf01fa9161ffa142fc70972098d48186f (diff) | |
| download | emacs-f6eacc468b8539be482260fa569e7b5ece07f4a2.tar.gz emacs-f6eacc468b8539be482260fa569e7b5ece07f4a2.zip | |
Improve documentation of 'server-name'
* doc/emacs/misc.texi (Emacs Server, TCP Emacs server)
(emacsclient Options):
* lisp/server.el (server-name): Document the usage of
'server-name' to specify the server file as an absolute file
name. (Bug#33934)
Diffstat (limited to 'lisp')
| -rw-r--r-- | lisp/server.el | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/lisp/server.el b/lisp/server.el index 9020b09c5de..a5d5e561db5 100644 --- a/lisp/server.el +++ b/lisp/server.el | |||
| @@ -270,7 +270,14 @@ been consumed.") | |||
| 270 | "server") | 270 | "server") |
| 271 | "The name of the Emacs server, if this Emacs process creates one. | 271 | "The name of the Emacs server, if this Emacs process creates one. |
| 272 | The command `server-start' makes use of this. It should not be | 272 | The command `server-start' makes use of this. It should not be |
| 273 | changed while a server is running." | 273 | changed while a server is running. |
| 274 | If this is a file name with no leading directories, Emacs will | ||
| 275 | create a socket file by that name under `server-socket-dir' | ||
| 276 | if `server-use-tcp' is nil, else under `server-auth-dir'. | ||
| 277 | If this is an absolute file name, it specifies where the socket | ||
| 278 | file will be created. To have emacsclient connect to the same | ||
| 279 | socket, use the \"-s\" switch for local non-TCP sockets, and | ||
| 280 | the \"-f\" switch otherwise." | ||
| 274 | :group 'server | 281 | :group 'server |
| 275 | :type 'string | 282 | :type 'string |
| 276 | :version "23.1") | 283 | :version "23.1") |