aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEric S. Raymond1992-07-15 21:31:44 +0000
committerEric S. Raymond1992-07-15 21:31:44 +0000
commit630cc4634d27bf555ccbb2392143255b90ae0445 (patch)
tree78d72c071c172ec0749153987abc009ed7509aea
parent4357eba769352561a89081a31f67729abd44ea04 (diff)
downloademacs-630cc4634d27bf555ccbb2392143255b90ae0445.tar.gz
emacs-630cc4634d27bf555ccbb2392143255b90ae0445.zip
*** empty log message ***
-rw-r--r--lisp/play/spook.el6
-rw-r--r--lisp/play/studly.el5
-rw-r--r--lisp/server.el10
-rw-r--r--lisp/shell.el10
-rw-r--r--lisp/startup.el6
-rw-r--r--lisp/subr.el7
-rw-r--r--lisp/superyank.el12
-rw-r--r--lisp/textmodes/scribe.el4
-rw-r--r--lisp/textmodes/spell.el4
9 files changed, 60 insertions, 4 deletions
diff --git a/lisp/play/spook.el b/lisp/play/spook.el
index 890441f4aa2..98b22fc2086 100644
--- a/lisp/play/spook.el
+++ b/lisp/play/spook.el
@@ -1,5 +1,8 @@
1;;; spook.el --- spook phrase utility for overloading the NSA line eater 1;;; spook.el --- spook phrase utility for overloading the NSA line eater
2 2
3;;; Maintainer: FSF
4;;; Last-modified: 05 Dec 1991
5
3;; Copyright (C) 1988 Free Software Foundation, Inc. 6;; Copyright (C) 1988 Free Software Foundation, Inc.
4 7
5;; This file is part of GNU Emacs. 8;; This file is part of GNU Emacs.
@@ -18,6 +21,7 @@
18;; along with GNU Emacs; see the file COPYING. If not, write to 21;; along with GNU Emacs; see the file COPYING. If not, write to
19;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. 22;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
20 23
24;;; Commentary:
21 25
22; Steve Strassmann (straz@media-lab.media.mit.edu) didn't write 26; Steve Strassmann (straz@media-lab.media.mit.edu) didn't write
23; this, and even if he did, he really didn't mean for you to use it 27; this, and even if he did, he really didn't mean for you to use it
@@ -36,6 +40,8 @@
36; give your message that extra bit of attractiveness for automated 40; give your message that extra bit of attractiveness for automated
37; keyword scanners. 41; keyword scanners.
38 42
43;;; Code:
44
39; Variables 45; Variables
40(defvar spook-phrases-file (concat data-directory "spook.lines") 46(defvar spook-phrases-file (concat data-directory "spook.lines")
41 "Keep your favorite phrases here.") 47 "Keep your favorite phrases here.")
diff --git a/lisp/play/studly.el b/lisp/play/studly.el
index 6d97a31fef0..704efe908de 100644
--- a/lisp/play/studly.el
+++ b/lisp/play/studly.el
@@ -1,7 +1,12 @@
1;;; studly.el --- StudlyCaps (tm)(r)(c)(xxx) 1;;; studly.el --- StudlyCaps (tm)(r)(c)(xxx)
2
3;; Maintainer: FSF
4
2;;; This is in the public domain, since it was distributed 5;;; This is in the public domain, since it was distributed
3;;; by its author without a copyright notice in 1986. 6;;; by its author without a copyright notice in 1986.
4 7
8;;; Code:
9
5(defun studlify-region (begin end) 10(defun studlify-region (begin end)
6 "Studlify-case the region" 11 "Studlify-case the region"
7 (interactive "*r") 12 (interactive "*r")
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 @@
1;;; server.el --- Lisp code for GNU Emacs running as server process. 1;;; server.el --- Lisp code for GNU Emacs running as server process.
2 2
3;; Copyright (C) 1986, 1987 Free Software Foundation, Inc. 3;; Author: William Sommerfeld <wesommer@athena.mit.edu>
4;; Author William Sommerfeld, wesommer@athena.mit.edu. 4;; Last-Modified: 5 Dec 1991
5
5;; Changes by peck@sun.com and by rms. 6;; Changes by peck@sun.com and by rms.
6 7
8;; Copyright (C) 1986, 1987 Free Software Foundation, Inc.
9
7;; This file is part of GNU Emacs. 10;; This file is part of GNU Emacs.
8 11
9;; GNU Emacs is free software; you can redistribute it and/or modify 12;; GNU Emacs is free software; you can redistribute it and/or modify
@@ -20,6 +23,7 @@
20;; along with GNU Emacs; see the file COPYING. If not, write to 23;; along with GNU Emacs; see the file COPYING. If not, write to
21;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. 24;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
22 25
26;;; Commentary:
23 27
24;;; This Lisp code is run in Emacs when it is to operate as 28;;; This Lisp code is run in Emacs when it is to operate as
25;;; a server for other processes. 29;;; a server for other processes.
@@ -66,6 +70,8 @@
66;;; the clients who are waiting for this buffer to be edited. 70;;; the clients who are waiting for this buffer to be edited.
67;;; The global variable "server-clients" lists all the waiting clients, 71;;; The global variable "server-clients" lists all the waiting clients,
68;;; and which files are yet to be edited for each. 72;;; and which files are yet to be edited for each.
73
74;;; Code:
69 75
70(defvar server-program "emacsserver" 76(defvar server-program "emacsserver"
71 "*The program to use as the edit server") 77 "*The program to use as the edit server")
diff --git a/lisp/shell.el b/lisp/shell.el
index 0473d364e4e..3279c1dfc81 100644
--- a/lisp/shell.el
+++ b/lisp/shell.el
@@ -1,5 +1,8 @@
1;;; shell.el --- general command interpreter in a window stuff 1;;; shell.el --- general command interpreter in a window stuff
2 2
3;; Author: Olin Shivers <shivers@cs.cmu.edu>
4;; Last-Modified: 16 Mar 1992
5
3;;; Copyright Olin Shivers (1988). 6;;; Copyright Olin Shivers (1988).
4 7
5;;; This file is part of GNU Emacs. 8;;; This file is part of GNU Emacs.
@@ -18,6 +21,8 @@
18;;; along with GNU Emacs; see the file COPYING. If not, write to 21;;; along with GNU Emacs; see the file COPYING. If not, write to
19;;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. 22;;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
20 23
24;;; Commentary:
25
21;;; The changelog is at the end of file. 26;;; The changelog is at the end of file.
22 27
23;;; Please send me bug reports, bug fixes, and extensions, so that I can 28;;; Please send me bug reports, bug fixes, and extensions, so that I can
@@ -44,7 +49,6 @@
44;;; Maybe I should ensure the process mark is in the window when I send 49;;; Maybe I should ensure the process mark is in the window when I send
45;;; text to the process? Switch selectable? 50;;; text to the process? Switch selectable?
46 51
47(require 'comint)
48;; YOUR .EMACS FILE 52;; YOUR .EMACS FILE
49;;============================================================================= 53;;=============================================================================
50;; Some suggestions for your .emacs file. 54;; Some suggestions for your .emacs file.
@@ -136,6 +140,10 @@
136;;; =========================================================================== 140;;; ===========================================================================
137;;; 141;;;
138 142
143;;; Code:
144
145(require 'comint)
146
139;;;###autoload 147;;;###autoload
140(defconst shell-prompt-pattern "^[^#$%>]*[#$%>] *" 148(defconst shell-prompt-pattern "^[^#$%>]*[#$%>] *"
141 "Regexp to match prompts in the inferior shell. 149 "Regexp to match prompts in the inferior shell.
diff --git a/lisp/startup.el b/lisp/startup.el
index 43d3e3c2eea..e8896ea01a9 100644
--- a/lisp/startup.el
+++ b/lisp/startup.el
@@ -1,5 +1,8 @@
1;;; startup.el --- process Emacs shell arguments 1;;; startup.el --- process Emacs shell arguments
2 2
3;; Maintainer: FSF
4;; Last-Modified: 9 Jul 1992
5
3;; Copyright (C) 1985, 1986, 1992 Free Software Foundation, Inc. 6;; Copyright (C) 1985, 1986, 1992 Free Software Foundation, Inc.
4 7
5;; This file is part of GNU Emacs. 8;; This file is part of GNU Emacs.
@@ -18,6 +21,7 @@
18;; along with GNU Emacs; see the file COPYING. If not, write to 21;; along with GNU Emacs; see the file COPYING. If not, write to
19;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. 22;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
20 23
24;;; Commentary:
21 25
22; These are processed only at the beginning of the argument list. 26; These are processed only at the beginning of the argument list.
23; -batch execute noninteractively (messages go to stdout, 27; -batch execute noninteractively (messages go to stdout,
@@ -48,6 +52,8 @@
48; file visit file 52; file visit file
49; -kill kill (exit) emacs 53; -kill kill (exit) emacs
50 54
55;;; Code:
56
51(setq top-level '(normal-top-level)) 57(setq top-level '(normal-top-level))
52 58
53(defvar command-line-processed nil "t once command line has been processed") 59(defvar command-line-processed nil "t once command line has been processed")
diff --git a/lisp/subr.el b/lisp/subr.el
index ecb119cccfc..9941fd7e322 100644
--- a/lisp/subr.el
+++ b/lisp/subr.el
@@ -1,4 +1,8 @@
1;;; subr.el --- basic lisp subroutines for Emacs 1;;; subr.el --- basic lisp subroutines for Emacs
2
3;; Maintainer: FSF
4;; Last-Modified: 12 Aug 1991
5
2;;; Copyright (C) 1985, 1986, 1992 Free Software Foundation, Inc. 6;;; Copyright (C) 1985, 1986, 1992 Free Software Foundation, Inc.
3 7
4;; This file is part of GNU Emacs. 8;; This file is part of GNU Emacs.
@@ -17,6 +21,7 @@
17;; along with GNU Emacs; see the file COPYING. If not, write to 21;; along with GNU Emacs; see the file COPYING. If not, write to
18;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. 22;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
19 23
24;;; Code:
20 25
21(defun one-window-p (&optional nomini) 26(defun one-window-p (&optional nomini)
22 "Returns non-nil if there is only one window. 27 "Returns non-nil if there is only one window.
@@ -351,3 +356,5 @@ and then modifies one entry in it."
351instead of having to write (function (lambda ...)) or '(lambda ...), the 356instead of having to write (function (lambda ...)) or '(lambda ...), the
352latter of which won't get byte-compiled." 357latter of which won't get byte-compiled."
353 (` (function (lambda (,@ cdr))))) 358 (` (function (lambda (,@ cdr)))))
359
360;;; subr.el ends here
diff --git a/lisp/superyank.el b/lisp/superyank.el
index 6c4f0a0ee86..9746b22a450 100644
--- a/lisp/superyank.el
+++ b/lisp/superyank.el
@@ -1,4 +1,11 @@
1;;; superyank.el --- smart message-yanking code for GNUS (Version 1.1) 1;;; superyank.el --- smart message-yanking code for GNUS
2
3;; Author: Barry A. Warsaw <warsaw@cme.nist.gov>
4;; Version: 1.1
5;; Last-Modified: 15 Jul 1992
6;; Adapted-By: ESR
7
8;;; Commentary:
2 9
3;; Inserts the message being replied to with various user controlled 10;; Inserts the message being replied to with various user controlled
4;; citation styles. 11;; citation styles.
@@ -83,6 +90,9 @@
83;; 2) reparse nested citations to try to recast as non-nested citations 90;; 2) reparse nested citations to try to recast as non-nested citations
84;; perhaps by checking the References: line 91;; perhaps by checking the References: line
85;; 92;;
93
94;;; Code:
95
86;; ====================================================================== 96;; ======================================================================
87;; 97;;
88;; require and provide features 98;; require and provide features
diff --git a/lisp/textmodes/scribe.el b/lisp/textmodes/scribe.el
index 7cc1bc26057..d722989ebdf 100644
--- a/lisp/textmodes/scribe.el
+++ b/lisp/textmodes/scribe.el
@@ -1,5 +1,8 @@
1;;; scribe.el --- scribe mode, and its idiosyncratic commands. 1;;; scribe.el --- scribe mode, and its idiosyncratic commands.
2 2
3;; Maintainer: FSF
4;; Last-Modified: 9 May 1991
5
3;; Copyright (C) 1985 Free Software Foundation, Inc. 6;; Copyright (C) 1985 Free Software Foundation, Inc.
4 7
5;; This file might become part of GNU Emacs. 8;; This file might become part of GNU Emacs.
@@ -18,6 +21,7 @@
18;; It should be in a file named COPYING. Among other things, the 21;; It should be in a file named COPYING. Among other things, the
19;; copyright notice and this notice must be preserved on all copies. 22;; copyright notice and this notice must be preserved on all copies.
20 23
24;;; Code:
21 25
22(defvar scribe-mode-syntax-table nil 26(defvar scribe-mode-syntax-table nil
23 "Syntax table used while in scribe mode.") 27 "Syntax table used while in scribe mode.")
diff --git a/lisp/textmodes/spell.el b/lisp/textmodes/spell.el
index 85adb6b4154..63ef847b018 100644
--- a/lisp/textmodes/spell.el
+++ b/lisp/textmodes/spell.el
@@ -1,5 +1,8 @@
1;;; spell.el --- spelling correction interface for Emacs. 1;;; spell.el --- spelling correction interface for Emacs.
2 2
3;; Maintainer: FSF
4;; Last-Modified: 9 May 1991
5
3;; Copyright (C) 1985 Free Software Foundation, Inc. 6;; Copyright (C) 1985 Free Software Foundation, Inc.
4 7
5;; This file is part of GNU Emacs. 8;; This file is part of GNU Emacs.
@@ -18,6 +21,7 @@
18;; along with GNU Emacs; see the file COPYING. If not, write to 21;; along with GNU Emacs; see the file COPYING. If not, write to
19;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. 22;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
20 23
24;;; Code:
21 25
22(defvar spell-command "spell" 26(defvar spell-command "spell"
23 "*Command to run the spell program.") 27 "*Command to run the spell program.")