mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-15 18:40:39 -08:00
Fix fatal error during startup (rep. by Friedrich Delgado Friedrichs)
lisp/loadup.el: Unconditionally preload server. lisp/server.el: Change server-getenv to a simple defun. src/Makefile.in (lisp, shortlisp): Added server.elc. mac/makefile.MPW (LispSource): Ditto. git-archimport-id: lorentey@elte.hu--2004/emacs--multi-tty--0--patch-164
This commit is contained in:
parent
c23670f81e
commit
35dfa9b69e
5 changed files with 8 additions and 1 deletions
|
|
@ -8,6 +8,7 @@
|
|||
;; Keywords: processes
|
||||
|
||||
;; Changes by peck@sun.com and by rms.
|
||||
;; Overhaul by Karoly Lorentey <lorentey@elte.hu> for multi-tty support.
|
||||
|
||||
;; This file is part of GNU Emacs.
|
||||
|
||||
|
|
@ -872,7 +873,8 @@ Arg NEXT-BUFFER is a suggestion; if it is a live buffer, use it."
|
|||
|
||||
(global-set-key "\C-x#" 'server-edit)
|
||||
|
||||
(defsubst server-getenv (variable &optional frame)
|
||||
;;;###autoload
|
||||
(defun server-getenv (variable &optional frame)
|
||||
"Get the value of VARIABLE in the client environment of frame FRAME.
|
||||
VARIABLE should be a string. Value is nil if VARIABLE is undefined in
|
||||
the environment. Otherwise, value is a string.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue