changeset 88042:1da8bfe80e01

(server-log-time-function): Doc fix. (server-buffer): Fix typo in docstring.
author Juanma Barranquero <lekktu@gmail.com>
date Sun, 27 Jan 2008 22:45:21 +0000
parents 0d96788fea72
children e5e78e681967
files lisp/server.el
diffstat 1 files changed, 4 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/server.el	Sun Jan 27 22:21:45 2008 +0000
+++ b/lisp/server.el	Sun Jan 27 22:45:21 2008 +0000
@@ -292,13 +292,13 @@
       (server-log "Deleted" proc))))
 
 (defvar server-log-time-function 'current-time-string
-  "Function to generate timestamps for the *server* buffer.")
+  "Function to generate timestamps for `server-buffer'.")
 
 (defconst server-buffer " *server*"
   "Buffer used internally by Emacs's server.
 One use is to log the I/O for debugging purposes (see `server-log'),
 the other is to provide a current buffer in which the process filter can
-safely let-bind buffer-local variables like default-directory.")
+safely let-bind buffer-local variables like `default-directory'.")
 
 (defvar server-log nil
   "If non-nil, log the server's inputs and outputs in the `server-buffer'.")
@@ -952,8 +952,8 @@
                    ;; Use the same cwd as the emacsclient, if possible, so
                    ;; relative file names work correctly, even in `eval'.
                    (let ((default-directory
-                           (if (and dir (file-directory-p dir))
-			       dir default-directory)))
+			  (if (and dir (file-directory-p dir))
+			      dir default-directory)))
                      (server-execute proc files nowait commands
                                      dontkill frame tty-name))))))