summaryrefslogtreecommitdiff
path: root/lisp/server.el
diff options
context:
space:
mode:
authorJuanma Barranquero <lekktu@gmail.com>2008-01-27 22:47:58 +0000
committerJuanma Barranquero <lekktu@gmail.com>2008-01-27 22:47:58 +0000
commitf03ea9d918bf696a78ce34b69914f4457a002816 (patch)
tree5252d85e614e2d8235acf85e2cecd566834eb9f8 /lisp/server.el
parenta51b80e7a7dd10a97761ff750deb95310412ff89 (diff)
(server-log-time-function): Doc fix.
(server-buffer): Fix typo in docstring.
Diffstat (limited to 'lisp/server.el')
-rw-r--r--lisp/server.el8
1 files changed, 4 insertions, 4 deletions
diff --git a/lisp/server.el b/lisp/server.el
index ad4608f2fd2..024df504779 100644
--- a/lisp/server.el
+++ b/lisp/server.el
@@ -292,13 +292,13 @@ If NOFRAME is non-nil, let the frames live. (To be used from
(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 @@ The following commands are accepted by the client:
;; 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))))))