]> git.eshelyaron.com Git - emacs.git/commitdiff
* server.el (server-process-filter): Fix typos and reflow docstring.
authorJuanma Barranquero <lekktu@gmail.com>
Tue, 11 Nov 2008 10:51:35 +0000 (10:51 +0000)
committerJuanma Barranquero <lekktu@gmail.com>
Tue, 11 Nov 2008 10:51:35 +0000 (10:51 +0000)
lisp/ChangeLog
lisp/server.el

index 480847e8cce62d3414f9085db13bc96bb4649893..e09ed0f8c9cce77190477deedbc53daca7023a1f 100644 (file)
@@ -1,3 +1,7 @@
+2008-11-11  Juanma Barranquero  <lekktu@gmail.com>
+
+       * server.el (server-process-filter): Fix typos and reflow docstring.
+
 2008-11-11  Martin Rudalics  <rudalics@gmx.at>
 
        * mail/footnote.el (footnote-mode): Improve doc-string.
index 2df1f9cedb3e4f9fc9853a4bdcf1537d7badc1c5..84e03f30391d9d7dfeabc702a5b96cb4b46aacc2 100644 (file)
@@ -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: