diff options
author | Juanma Barranquero <lekktu@gmail.com> | 2008-11-11 10:51:35 +0000 |
---|---|---|
committer | Juanma Barranquero <lekktu@gmail.com> | 2008-11-11 10:51:35 +0000 |
commit | 909049cbf2e014688aa5a6c61f20cc130aa9163a (patch) | |
tree | ba668a81693ea653adecc12a8baf291291b57288 /lisp/server.el | |
parent | 2c4ac0695ad1cc22c34898d1518387fcafdfcb57 (diff) | |
download | emacs-909049cbf2e014688aa5a6c61f20cc130aa9163a.tar.gz |
* server.el (server-process-filter): Fix typos and reflow docstring.
Diffstat (limited to 'lisp/server.el')
-rw-r--r-- | lisp/server.el | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/lisp/server.el b/lisp/server.el index 2df1f9cedb3..84e03f30391 100644 --- a/lisp/server.el +++ b/lisp/server.el @@ -681,16 +681,16 @@ Server mode runs a process that accepts commands from the (defun* server-process-filter (proc string) "Process a request from the server to edit some files. PROC is the server process. STRING consists of a sequence of -commands prefixed by a dash. Some commands have arguments; these -are &-quoted and need to be decoded by `server-unquote-arg'. The -filter parses and executes these commands. +commands prefixed by a dash. Some commands have arguments; +these are &-quoted and need to be decoded by `server-unquote-arg'. +The filter parses and executes these commands. To illustrate the protocol, here is an example command that emacsclient sends to create a new X frame (note that the whole sequence is sent on a single line): - -env HOME /home/lorentey - -env DISPLAY :0.0 + -env HOME=/home/lorentey + -env DISPLAY=:0.0 ... lots of other -env commands -display :0.0 -window-system @@ -745,8 +745,8 @@ The following commands are accepted by the server: controlling tty. `-ignore COMMENT' - Do nothing, but put the comment in the server - log. Useful for debugging. + Do nothing, but put the comment in the server log. + Useful for debugging. The following commands are accepted by the client: |