+2008-01-27 Juanma Barranquero <lekktu@gmail.com>
+
+ * server.el (server-log-time-function): Doc fix.
+ (server-buffer): Fix typo in docstring.
+
2008-01-27 Martin Rudalics <rudalics@gmx.at>
* view.el (view-buffer): Explain in doc-string why exit-action
2007-01-27 Jan Nieuwenhuizen <janneke@gnu.org>
- * add-log.el (change-log-search-file-name, change-log-find-file):
- New function.
+ * add-log.el (change-log-search-file-name, change-log-find-file):
+ New function.
(change-log-font-lock-keywords): Move file name matching ...
(change-log-file-names-re): ... here. New defconst.
- (change-log-mode-map): New binding C-c C-f to change-log-find-file.
+ (change-log-mode-map): New binding C-c C-f to change-log-find-file.
2008-01-27 Alan Mackenzie <acm@muc.de>
2008-01-27 Alan Mackenzie <acm@muc.de>
- * progmodes/cc-vars.el (c-hanging-braces-alist): new element for
+ * progmodes/cc-vars.el (c-hanging-braces-alist): New element for
arglist-cont-nonempty.
* progmodes/cc-cmds.el (c-brace-newlines): Determine the newlines
(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'.")
;; 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))))))