diff options
| author | Eric S. Raymond | 1993-03-17 15:58:09 +0000 |
|---|---|---|
| committer | Eric S. Raymond | 1993-03-17 15:58:09 +0000 |
| commit | 3b1e4dd1eb6c7f99cf9d609eb39fba77f2adfbc9 (patch) | |
| tree | 82aa1b7a09248b8aac4b7580beea5f24e039c0af | |
| parent | c84729481b9eada04adccafbb62e5c6fdad8d142 (diff) | |
| download | emacs-3b1e4dd1eb6c7f99cf9d609eb39fba77f2adfbc9.tar.gz emacs-3b1e4dd1eb6c7f99cf9d609eb39fba77f2adfbc9.zip | |
Add standard library headers.
| -rw-r--r-- | lisp/emacs-lisp/cust-print.el | 2 | ||||
| -rw-r--r-- | lisp/find-dired.el | 8 | ||||
| -rw-r--r-- | lisp/find-gc.el | 4 | ||||
| -rw-r--r-- | lisp/hippie-exp.el | 13 | ||||
| -rw-r--r-- | lisp/isearch.el | 25 |
5 files changed, 34 insertions, 18 deletions
diff --git a/lisp/emacs-lisp/cust-print.el b/lisp/emacs-lisp/cust-print.el index 8676c98d402..49b76ce18e9 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/find-dired.el b/lisp/find-dired.el index bb1f29f4b6f..5fa664ed424 100644 --- a/lisp/find-dired.el +++ b/lisp/find-dired.el | |||
| @@ -1,4 +1,4 @@ | |||
| 1 | ;; find-dired.el --- run a `find' command and dired the output | 1 | ;;; find-dired.el --- run a `find' command and dired the output |
| 2 | 2 | ||
| 3 | ;;; Copyright (C) 1992 Free Software Foundation, Inc. | 3 | ;;; Copyright (C) 1992 Free Software Foundation, Inc. |
| 4 | 4 | ||
| @@ -7,8 +7,8 @@ | |||
| 7 | ;; Maintainer: Sebastian Kremer <sk@thp.uni-koeln.de> | 7 | ;; Maintainer: Sebastian Kremer <sk@thp.uni-koeln.de> |
| 8 | ;; Keywords: unix | 8 | ;; Keywords: unix |
| 9 | 9 | ||
| 10 | (defconst find-dired-version (substring "$Revision: 1.15 $" 11 -2) | 10 | (defconst find-dired-version (substring "$Revision: 1.10 $" 11 -2) |
| 11 | "$Id: find-dired.el,v 1.15 1992/09/26 11:48:45 sk Exp $") | 11 | "$Id: find-dired.el,v 1.10 1992/09/27 01:24:00 roland Exp eric $") |
| 12 | 12 | ||
| 13 | ;;; This program is free software; you can redistribute it and/or modify | 13 | ;;; This program is free software; you can redistribute it and/or modify |
| 14 | ;;; it under the terms of the GNU General Public License as published by | 14 | ;;; it under the terms of the GNU General Public License as published by |
| @@ -33,7 +33,7 @@ | |||
| 33 | ;; find-dired|Roland McGrath, Sebastian Kremer | 33 | ;; find-dired|Roland McGrath, Sebastian Kremer |
| 34 | ;; |roland@gnu.ai.mit.edu, sk@thp.uni-koeln.de | 34 | ;; |roland@gnu.ai.mit.edu, sk@thp.uni-koeln.de |
| 35 | ;; |Run a `find' command and dired the output | 35 | ;; |Run a `find' command and dired the output |
| 36 | ;; |$Date: 1992/09/26 11:48:45 $|$Revision: 1.15 $| | 36 | ;; |$Date: 1992/09/27 01:24:00 $|$Revision: 1.10 $| |
| 37 | 37 | ||
| 38 | ;; INSTALLATION ====================================================== | 38 | ;; INSTALLATION ====================================================== |
| 39 | 39 | ||
diff --git a/lisp/find-gc.el b/lisp/find-gc.el index 38088a3ba58..40289587a91 100644 --- a/lisp/find-gc.el +++ b/lisp/find-gc.el | |||
| @@ -20,12 +20,14 @@ | |||
| 20 | ;; along with GNU Emacs; see the file COPYING. If not, write to | 20 | ;; along with GNU Emacs; see the file COPYING. If not, write to |
| 21 | ;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. | 21 | ;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. |
| 22 | 22 | ||
| 23 | ;; Code: | 23 | ;;; Commentary: |
| 24 | 24 | ||
| 25 | ;;; Produce in unsafe-list the set of all functions that may invoke GC. | 25 | ;;; Produce in unsafe-list the set of all functions that may invoke GC. |
| 26 | ;;; This expects the Emacs sources to live in emacs-source-directory. | 26 | ;;; This expects the Emacs sources to live in emacs-source-directory. |
| 27 | ;;; It creates a temporary working directory /tmp/esrc. | 27 | ;;; It creates a temporary working directory /tmp/esrc. |
| 28 | 28 | ||
| 29 | ;;; Code: | ||
| 30 | |||
| 29 | (defun find-gc-unsafe () | 31 | (defun find-gc-unsafe () |
| 30 | (trace-call-tree nil) | 32 | (trace-call-tree nil) |
| 31 | (trace-use-tree) | 33 | (trace-use-tree) |
diff --git a/lisp/hippie-exp.el b/lisp/hippie-exp.el index 1d2f647ecf2..0080136c8e4 100644 --- a/lisp/hippie-exp.el +++ b/lisp/hippie-exp.el | |||
| @@ -1,4 +1,8 @@ | |||
| 1 | ;; Expand a word trying various ways to find its expansion. | 1 | ;;; hippie.el --- expand a word trying various ways to find its expansion. |
| 2 | |||
| 3 | ;; Author: Anders Holst <aho@sans.kth.se> | ||
| 4 | ;; Keywords: extensions | ||
| 5 | |||
| 2 | ;; Copyright (C) 1992 Free Software Foundation, Inc. | 6 | ;; Copyright (C) 1992 Free Software Foundation, Inc. |
| 3 | ;; | 7 | ;; |
| 4 | ;; This file is part of GNU Emacs. | 8 | ;; This file is part of GNU Emacs. |
| @@ -17,12 +21,9 @@ | |||
| 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 | ;; |
| 20 | ;; Author: Anders Holst (aho@sans.kth.se) | ||
| 21 | ;; | ||
| 22 | ;; Last change: 4 January 1993 | 24 | ;; Last change: 4 January 1993 |
| 23 | 25 | ||
| 24 | ;; | 26 | ;; Commentary: |
| 25 | ;; DESCRIPTION | ||
| 26 | ;; | 27 | ;; |
| 27 | ;; `hippie-expand' is a single function for a lot of different kinds | 28 | ;; `hippie-expand' is a single function for a lot of different kinds |
| 28 | ;; of completions and expansions. Called repeatedly it tries all | 29 | ;; of completions and expansions. Called repeatedly it tries all |
| @@ -124,6 +125,7 @@ | |||
| 124 | ;; how to improve it. | 125 | ;; how to improve it. |
| 125 | ;; | 126 | ;; |
| 126 | 127 | ||
| 128 | ;; Code: | ||
| 127 | 129 | ||
| 128 | (defvar he-num -1) | 130 | (defvar he-num -1) |
| 129 | 131 | ||
| @@ -672,3 +674,4 @@ string). It returns t if a new expansion is found, nil otherwise." | |||
| 672 | (skip-chars-forward "-_.") | 674 | (skip-chars-forward "-_.") |
| 673 | (point)))) | 675 | (point)))) |
| 674 | 676 | ||
| 677 | ;;; hippie.el ends here | ||
diff --git a/lisp/isearch.el b/lisp/isearch.el index 3595b972ab5..9fa37e25e09 100644 --- a/lisp/isearch.el +++ b/lisp/isearch.el | |||
| @@ -1,10 +1,10 @@ | |||
| 1 | ;; Incremental search minor mode. | 1 | ;; isearch.el ---- incremental search minor mode. |
| 2 | |||
| 2 | ;; Copyright (C) 1992 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 1992 Free Software Foundation, Inc. |
| 3 | 4 | ||
| 4 | ;; LCD Archive Entry: | 5 | ;; Author: Daniel LaLiberte <liberte@cs.uiuc.edu> |
| 5 | ;; isearch-mode|Daniel LaLiberte|liberte@cs.uiuc.edu | 6 | |
| 6 | ;; |A minor mode replacement for isearch.el. | 7 | ;; |$Date: 1993/03/07 20:17:27 $|$Revision: 1.23 $ |
| 7 | ;; |$Date: 1993/03/07 08:43:57 $|$Revision: 1.22 $|~/modes/isearch-mode.el | ||
| 8 | 8 | ||
| 9 | ;; This file is not yet part of GNU Emacs, but it is based almost | 9 | ;; This file is not yet part of GNU Emacs, but it is based almost |
| 10 | ;; entirely on isearch.el which is part of GNU Emacs. | 10 | ;; entirely on isearch.el which is part of GNU Emacs. |
| @@ -24,6 +24,8 @@ | |||
| 24 | ;; file named COPYING. Among other things, the copyright notice | 24 | ;; file named COPYING. Among other things, the copyright notice |
| 25 | ;; and this notice must be preserved on all copies. | 25 | ;; and this notice must be preserved on all copies. |
| 26 | 26 | ||
| 27 | ;;; Commentary: | ||
| 28 | |||
| 27 | ;;;==================================================================== | 29 | ;;;==================================================================== |
| 28 | ;; Instructions | 30 | ;; Instructions |
| 29 | 31 | ||
| @@ -85,11 +87,18 @@ | |||
| 85 | ;; - Think about incorporating query-replace. | 87 | ;; - Think about incorporating query-replace. |
| 86 | ;; - Hooks and options for failed search. | 88 | ;; - Hooks and options for failed search. |
| 87 | 89 | ||
| 90 | ;;; Change Log: | ||
| 91 | |||
| 88 | ;;;==================================================================== | 92 | ;;;==================================================================== |
| 89 | ;;; Change History | 93 | ;;; Change History |
| 90 | 94 | ||
| 91 | ;;; $Header: /gd/gnu/emacs/19.0/lisp/RCS/isearch-mode.el,v 1.22 1993/03/07 08:43:57 rms Exp rms $ | 95 | ;;; $Header: /gd/gnu/emacs/19.0/lisp/RCS/isearch.el,v 1.23 1993/03/07 20:17:27 rms Exp eric $ |
| 92 | ;;; $Log: isearch-mode.el,v $ | 96 | ;;; $Log: isearch.el,v $ |
| 97 | ; Revision 1.23 1993/03/07 20:17:27 rms | ||
| 98 | ; (isearch-other-meta-char): Call listify-key-sequence. | ||
| 99 | ; (isearch-unread): Don't call it here. | ||
| 100 | ; (isearch-mode-map): Bind the ASCII-equivalent function keys. | ||
| 101 | ; | ||
| 93 | ; Revision 1.22 1993/03/07 08:43:57 rms | 102 | ; Revision 1.22 1993/03/07 08:43:57 rms |
| 94 | ; (isearch-mode): Don't make a pre-command-hook. | 103 | ; (isearch-mode): Don't make a pre-command-hook. |
| 95 | ; | 104 | ; |
| @@ -186,6 +195,7 @@ | |||
| 186 | ;;; 3/18/92 Fixed invalid-regexp. | 195 | ;;; 3/18/92 Fixed invalid-regexp. |
| 187 | ;;; 3/18/92 Fixed yanking in regexps. | 196 | ;;; 3/18/92 Fixed yanking in regexps. |
| 188 | 197 | ||
| 198 | ;;; Code: | ||
| 189 | 199 | ||
| 190 | 200 | ||
| 191 | ;;;========================================================================= | 201 | ;;;========================================================================= |
| @@ -1574,3 +1584,4 @@ have special meaning in a regexp." | |||
| 1574 | 1584 | ||
| 1575 | ;;)) | 1585 | ;;)) |
| 1576 | 1586 | ||
| 1587 | ;;; isearch.el ends here | ||