diff options
author | Eric S. Raymond <esr@snark.thyrsus.com> | 1992-07-15 21:31:44 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@snark.thyrsus.com> | 1992-07-15 21:31:44 +0000 |
commit | 630cc4634d27bf555ccbb2392143255b90ae0445 (patch) | |
tree | 78d72c071c172ec0749153987abc009ed7509aea /lisp/server.el | |
parent | 4357eba769352561a89081a31f67729abd44ea04 (diff) | |
download | emacs-630cc4634d27bf555ccbb2392143255b90ae0445.tar.gz |
*** empty log message ***
Diffstat (limited to 'lisp/server.el')
-rw-r--r-- | lisp/server.el | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/lisp/server.el b/lisp/server.el index 9273064a7c5..8aaa836b999 100644 --- a/lisp/server.el +++ b/lisp/server.el @@ -1,9 +1,12 @@ ;;; server.el --- Lisp code for GNU Emacs running as server process. -;; Copyright (C) 1986, 1987 Free Software Foundation, Inc. -;; Author William Sommerfeld, wesommer@athena.mit.edu. +;; Author: William Sommerfeld <wesommer@athena.mit.edu> +;; Last-Modified: 5 Dec 1991 + ;; Changes by peck@sun.com and by rms. +;; Copyright (C) 1986, 1987 Free Software Foundation, Inc. + ;; This file is part of GNU Emacs. ;; GNU Emacs is free software; you can redistribute it and/or modify @@ -20,6 +23,7 @@ ;; along with GNU Emacs; see the file COPYING. If not, write to ;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. +;;; Commentary: ;;; This Lisp code is run in Emacs when it is to operate as ;;; a server for other processes. @@ -66,6 +70,8 @@ ;;; the clients who are waiting for this buffer to be edited. ;;; The global variable "server-clients" lists all the waiting clients, ;;; and which files are yet to be edited for each. + +;;; Code: (defvar server-program "emacsserver" "*The program to use as the edit server") |