aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEric S. Raymond1993-03-17 15:20:58 +0000
committerEric S. Raymond1993-03-17 15:20:58 +0000
commitc84729481b9eada04adccafbb62e5c6fdad8d142 (patch)
tree3cae02d1507a4616bfc33e269f4d51278ea16c01
parentc5d87135f5bd40e7c681a765b1f8d3aa62d16365 (diff)
downloademacs-c84729481b9eada04adccafbb62e5c6fdad8d142.tar.gz
emacs-c84729481b9eada04adccafbb62e5c6fdad8d142.zip
Added standard library headers.
-rw-r--r--lisp/ange-ftp.el14
-rw-r--r--lisp/byte-run.el2
-rw-r--r--lisp/case-table.el2
-rw-r--r--lisp/cl.el7
-rw-r--r--lisp/cmulisp.el5
-rw-r--r--lisp/cmuscheme.el3
-rw-r--r--lisp/dired-aux.el2
-rw-r--r--lisp/dired.el2
-rw-r--r--lisp/electric.el5
-rw-r--r--lisp/emacs-lisp/backquote.el2
-rw-r--r--lisp/emacs-lisp/cust-print.el2
-rw-r--r--lisp/progmodes/etags.el2
12 files changed, 31 insertions, 17 deletions
diff --git a/lisp/ange-ftp.el b/lisp/ange-ftp.el
index 34610f87588..0e63e35ed0c 100644
--- a/lisp/ange-ftp.el
+++ b/lisp/ange-ftp.el
@@ -1,10 +1,10 @@
1;; -*-Emacs-Lisp-*- 1;;; ange-ftp.el --- transparent FTP support for GNU Emacs
2;;; ??? Waiting for papers from several people.
3;; Description: transparent FTP support for GNU Emacs
4 2
5;;; Copyright (C) 1989, 1990, 1991, 1992 Free Software Foundation, Inc. 3;;; Copyright (C) 1989, 1990, 1991, 1992 Free Software Foundation, Inc.
4;;; ??? Waiting for papers from several people.
6;;; 5;;;
7;;; Author: Andy Norman (ange@hplb.hpl.hp.com) 6;;; Author: Andy Norman (ange@hplb.hpl.hp.com)
7;;; Keywords: tools
8;;; 8;;;
9;;; This program is free software; you can redistribute it and/or modify 9;;; This program is free software; you can redistribute it and/or modify
10;;; it under the terms of the GNU General Public License as published by 10;;; it under the terms of the GNU General Public License as published by
@@ -21,7 +21,7 @@
21;;; the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 21;;; the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA
22;;; 02139, USA. 22;;; 02139, USA.
23 23
24;;; Description: 24;;; Commentary:
25;;; 25;;;
26;;; This package attempts to make accessing files and directories using FTP 26;;; This package attempts to make accessing files and directories using FTP
27;;; from within GNU Emacs as simple and transparent as possible. A subset of 27;;; from within GNU Emacs as simple and transparent as possible. A subset of
@@ -610,6 +610,8 @@
610;;; whose names I've forgotten who have helped to debug and fix problems with 610;;; whose names I've forgotten who have helped to debug and fix problems with
611;;; ange-ftp.el. 611;;; ange-ftp.el.
612 612
613
614;;; Code:
613(require 'comint) 615(require 'comint)
614 616
615;;;; ------------------------------------------------------------ 617;;;; ------------------------------------------------------------
@@ -857,7 +859,7 @@ SIZE, if supplied, should be a prime number."
857;;;; Internal variables. 859;;;; Internal variables.
858;;;; ------------------------------------------------------------ 860;;;; ------------------------------------------------------------
859 861
860(defconst ange-ftp-version "$Revision: 1.12 $") 862(defconst ange-ftp-version "$Revision: 1.13 $")
861 863
862(defvar ange-ftp-data-buffer-name " *ftp data*" 864(defvar ange-ftp-data-buffer-name " *ftp data*"
863 "Buffer name to hold directory listing data received from ftp process.") 865 "Buffer name to hold directory listing data received from ftp process.")
@@ -5310,3 +5312,5 @@ Other orders of $ and _ seem to all work just fine.")
5310;;;; ------------------------------------------------------------ 5312;;;; ------------------------------------------------------------
5311 5313
5312(provide 'ange-ftp) 5314(provide 'ange-ftp)
5315
5316;;; ange-ftp.el ends here
diff --git a/lisp/byte-run.el b/lisp/byte-run.el
index 1a09ec6ac11..8d5595a8b0a 100644
--- a/lisp/byte-run.el
+++ b/lisp/byte-run.el
@@ -1,4 +1,4 @@
1;; byte-run.el --- byte-compiler support for inlining 1;;; byte-run.el --- byte-compiler support for inlining
2 2
3;; Copyright (C) 1992 Free Software Foundation, Inc. 3;; Copyright (C) 1992 Free Software Foundation, Inc.
4 4
diff --git a/lisp/case-table.el b/lisp/case-table.el
index fbfcfc18076..c9fb8efad7f 100644
--- a/lisp/case-table.el
+++ b/lisp/case-table.el
@@ -1,4 +1,4 @@
1;;; case-table.el ---code to extend the character set and support case tables. 1;;; case-table.el --- code to extend the character set and support case tables.
2 2
3;; Copyright (C) 1988 Free Software Foundation, Inc. 3;; Copyright (C) 1988 Free Software Foundation, Inc.
4 4
diff --git a/lisp/cl.el b/lisp/cl.el
index db477e1005f..b897603ab47 100644
--- a/lisp/cl.el
+++ b/lisp/cl.el
@@ -1,4 +1,5 @@
1;; Common-Lisp extensions for GNU Emacs Lisp. 1;;; cl.el --- Common-Lisp extensions for GNU Emacs Lisp.
2
2;; Copyright (C) 1987, 1988, 1989, 1992 Free Software Foundation, Inc. 3;; Copyright (C) 1987, 1988, 1989, 1992 Free Software Foundation, Inc.
3 4
4;; Author: Cesar Quiroz <quiroz@cs.rochester.edu> 5;; Author: Cesar Quiroz <quiroz@cs.rochester.edu>
@@ -23,6 +24,8 @@
23;; file named COPYING. Among other things, the copyright notice 24;; file named COPYING. Among other things, the copyright notice
24;; and this notice must be preserved on all copies. 25;; and this notice must be preserved on all copies.
25 26
27;;; Commentary:
28
26;;; Notes from Rob Austein on his mods 29;;; Notes from Rob Austein on his mods
27;; yaya:/usr/u/sra/cl/cl.el, 5-May-1991 16:01:34, sra 30;; yaya:/usr/u/sra/cl/cl.el, 5-May-1991 16:01:34, sra
28;; 31;;
@@ -46,8 +49,6 @@
46;; at compile time? Lisp is going to check for a binding at run-time 49;; at compile time? Lisp is going to check for a binding at run-time
47;; anyway, so maybe we should just assume the user's right here. 50;; anyway, so maybe we should just assume the user's right here.
48 51
49;;; Commentary:
50
51;;;; These are extensions to Emacs Lisp that provide some form of 52;;;; These are extensions to Emacs Lisp that provide some form of
52;;;; Common Lisp compatibility, beyond what is already built-in 53;;;; Common Lisp compatibility, beyond what is already built-in
53;;;; in Emacs Lisp. 54;;;; in Emacs Lisp.
diff --git a/lisp/cmulisp.el b/lisp/cmulisp.el
index 8a406e7e85f..fff1d95ada8 100644
--- a/lisp/cmulisp.el
+++ b/lisp/cmulisp.el
@@ -6,6 +6,8 @@
6;;; way you like, as long as you don't charge money for it, remove this 6;;; way you like, as long as you don't charge money for it, remove this
7;;; notice, or hold me liable for its results. 7;;; notice, or hold me liable for its results.
8 8
9;;; Commentary:
10
9;;; This replaces the standard inferior-lisp mode. 11;;; This replaces the standard inferior-lisp mode.
10;;; Hacked from tea.el by Olin Shivers (shivers@cs.cmu.edu). 8/88 12;;; Hacked from tea.el by Olin Shivers (shivers@cs.cmu.edu). 8/88
11;;; Please send me bug reports, bug fixes, and extensions, so that I can 13;;; Please send me bug reports, bug fixes, and extensions, so that I can
@@ -126,6 +128,9 @@
126 128
127;;; Read the rest of this file for more information. 129;;; Read the rest of this file for more information.
128 130
131
132;;; Code:
133
129(defvar cmulisp-filter-regexp "\\`\\s *\\(:\\(\\w\\|\\s_\\)\\)?\\s *\\'" 134(defvar cmulisp-filter-regexp "\\`\\s *\\(:\\(\\w\\|\\s_\\)\\)?\\s *\\'"
130 "*What not to save on inferior Lisp's input history 135 "*What not to save on inferior Lisp's input history
131Input matching this regexp is not saved on the input history in cmulisp 136Input matching this regexp is not saved on the input history in cmulisp
diff --git a/lisp/cmuscheme.el b/lisp/cmuscheme.el
index 6d39774822f..7ce9f0cf94a 100644
--- a/lisp/cmuscheme.el
+++ b/lisp/cmuscheme.el
@@ -1,4 +1,5 @@
1;;; cmuscheme.el -- Scheme process in a buffer. Adapted from tea.el. 1;;; cmuscheme.el --- Scheme process in a buffer. Adapted from tea.el.
2
2;;; Copyright (C) 1988 Free Software Foundation, Inc. 3;;; Copyright (C) 1988 Free Software Foundation, Inc.
3 4
4;; Author: Olin Shivers <olin.shivers@cs.cmu.edu> 5;; Author: Olin Shivers <olin.shivers@cs.cmu.edu>
diff --git a/lisp/dired-aux.el b/lisp/dired-aux.el
index e7c42486e5a..0af40a03c54 100644
--- a/lisp/dired-aux.el
+++ b/lisp/dired-aux.el
@@ -1,4 +1,4 @@
1;; dired-aux.el --- all of dired except what people usually use 1;;; dired-aux.el --- all of dired except what people usually use
2 2
3;; Copyright (C) 1985, 1986, 1992 Free Software Foundation, Inc. 3;; Copyright (C) 1985, 1986, 1992 Free Software Foundation, Inc.
4 4
diff --git a/lisp/dired.el b/lisp/dired.el
index 1687dc6d002..e68b58891ec 100644
--- a/lisp/dired.el
+++ b/lisp/dired.el
@@ -1,4 +1,4 @@
1;; dired.el --- directory-browsing commands 1;;; dired.el --- directory-browsing commands
2 2
3;; Copyright (C) 1985, 1986, 1992 Free Software Foundation, Inc. 3;; Copyright (C) 1985, 1986, 1992 Free Software Foundation, Inc.
4 4
diff --git a/lisp/electric.el b/lisp/electric.el
index 3f91adf2093..5272d706845 100644
--- a/lisp/electric.el
+++ b/lisp/electric.el
@@ -22,9 +22,12 @@
22;; along with GNU Emacs; see the file COPYING. If not, write to 22;; along with GNU Emacs; see the file COPYING. If not, write to
23;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. 23;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
24 24
25;;; Commentary:
25 26
26; zaaaaaaap 27; zaaaaaaap
27 28
29;;; Code:
30
28;; perhaps this should be in subr.el... 31;; perhaps this should be in subr.el...
29(defun shrink-window-if-larger-than-buffer (window) 32(defun shrink-window-if-larger-than-buffer (window)
30 (save-excursion 33 (save-excursion
@@ -187,4 +190,4 @@
187 190
188(provide 'electric) 191(provide 'electric)
189 192
190; electric.el ends here 193;;; electric.el ends here
diff --git a/lisp/emacs-lisp/backquote.el b/lisp/emacs-lisp/backquote.el
index e4c7da1d13f..a74e30ad851 100644
--- a/lisp/emacs-lisp/backquote.el
+++ b/lisp/emacs-lisp/backquote.el
@@ -1,4 +1,4 @@
1;; backquote.el --- backquoting for Emacs Lisp macros 1;;; backquote.el --- backquoting for Emacs Lisp macros
2 2
3;; Copyright (C) 1985 Free Software Foundation, Inc. 3;; Copyright (C) 1985 Free Software Foundation, Inc.
4 4
diff --git a/lisp/emacs-lisp/cust-print.el b/lisp/emacs-lisp/cust-print.el
index 965b52e4b81..8676c98d402 100644
--- a/lisp/emacs-lisp/cust-print.el
+++ b/lisp/emacs-lisp/cust-print.el
@@ -1,4 +1,4 @@
1;; cust-print.el -- handles print-level and print-circle. 1;; cust-print.el --- handles print-level and print-circle.
2 2
3;; Copyright (C) 1992 Free Software Foundation, Inc. 3;; Copyright (C) 1992 Free Software Foundation, Inc.
4 4
diff --git a/lisp/progmodes/etags.el b/lisp/progmodes/etags.el
index 1cf1e810541..adca6ad4d7b 100644
--- a/lisp/progmodes/etags.el
+++ b/lisp/progmodes/etags.el
@@ -1,4 +1,4 @@
1;; etags.el --- etags facility for Emacs 1;;; etags.el --- etags facility for Emacs
2 2
3;; Copyright (C) 1985, 1986, 1988, 1989, 1992, 1993 3;; Copyright (C) 1985, 1986, 1988, 1989, 1992, 1993
4;; Free Software Foundation, Inc. 4;; Free Software Foundation, Inc.