Variable: server-buffer

server-buffer is a variable defined in server.el.gz.

Value

" *server*"

Documentation

Buffer used internally by Emacs's server.

One use is to log the I/O for debugging purposes (see option server-log(var)/server-log(fun)), the other is to provide a current buffer in which the process filter can safely let-bind buffer-local variables like default-directory.

Source Code

;; Defined in /usr/src/emacs/lisp/server.el.gz
(defconst server-buffer " *server*"
  "Buffer used internally by Emacs's server.
One use is to log the I/O for debugging purposes (see option `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'.")