aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEric S. Raymond1992-07-16 06:28:10 +0000
committerEric S. Raymond1992-07-16 06:28:10 +0000
commit282d89c00d827cc25d77849ac23e919cbeabd045 (patch)
tree4723478b7434e1d7b13e6a35a66b459793768559
parent841763034cba0e8e751fe510082babacfd83c2a5 (diff)
downloademacs-282d89c00d827cc25d77849ac23e919cbeabd045.tar.gz
emacs-282d89c00d827cc25d77849ac23e919cbeabd045.zip
*** empty log message ***
-rw-r--r--lisp/emacs-lisp/copyright.el2
-rw-r--r--lisp/emacs-lisp/profile.el4
-rw-r--r--lisp/flow-ctrl.el2
-rw-r--r--lisp/isearch.el63
-rw-r--r--lisp/kermit.el14
-rw-r--r--lisp/progmodes/perl-mode.el2
-rw-r--r--lisp/superyank.el2
-rw-r--r--lisp/textmodes/ispell4.el5
8 files changed, 55 insertions, 39 deletions
diff --git a/lisp/emacs-lisp/copyright.el b/lisp/emacs-lisp/copyright.el
index 8b03a68e01d..2856e17c264 100644
--- a/lisp/emacs-lisp/copyright.el
+++ b/lisp/emacs-lisp/copyright.el
@@ -1,4 +1,4 @@
1;;; upd-copyr.el --- update the copyright notice in a GNU Emacs elisp file 1;;; upd-copyr.el --- update the copyright notice in a GNU Emacs Lisp file
2 2
3;; Author: Roland McGrath <roland@gnu.ai.mit.edu> 3;; Author: Roland McGrath <roland@gnu.ai.mit.edu>
4;; Last-Modified: 03 Jun 1991 4;; Last-Modified: 03 Jun 1991
diff --git a/lisp/emacs-lisp/profile.el b/lisp/emacs-lisp/profile.el
index cdeb8d76f04..dfd853fcb32 100644
--- a/lisp/emacs-lisp/profile.el
+++ b/lisp/emacs-lisp/profile.el
@@ -1,4 +1,4 @@
1;;; profile.el -- generate run time measurements of elisp functions 1;;; profile.el -- generate run time measurements of Emacs Lisp functions
2 2
3;; Author: Boaz Ben-Zvi <boaz@lcs.mit.edu> 3;; Author: Boaz Ben-Zvi <boaz@lcs.mit.edu>
4;; Created: 7 Feb 1992 4;; Created: 7 Feb 1992
@@ -28,7 +28,7 @@
28 28
29; DESCRIPTION: 29; DESCRIPTION:
30; ------------ 30; ------------
31; This program can be used to monitor running time performance of elisp 31; This program can be used to monitor running time performance of Emacs Lisp
32; functions. It takes a list of functions and report the real time spent 32; functions. It takes a list of functions and report the real time spent
33; inside these functions. It runs a process with a separate timer program. 33; inside these functions. It runs a process with a separate timer program.
34; Caveat: the C code included with this package requires BSD-compatible 34; Caveat: the C code included with this package requires BSD-compatible
diff --git a/lisp/flow-ctrl.el b/lisp/flow-ctrl.el
index 104aee3ac86..853fac2f6ef 100644
--- a/lisp/flow-ctrl.el
+++ b/lisp/flow-ctrl.el
@@ -21,7 +21,7 @@
21;;; 21;;;
22 22
23;;;; Terminals that use XON/XOFF flow control can cause problems with 23;;;; Terminals that use XON/XOFF flow control can cause problems with
24;;;; GNU Emacs users. This file contains elisp code that makes it 24;;;; GNU Emacs users. This file contains Emacs Lisp code that makes it
25;;;; easy for a user to deal with this problem, when using such a 25;;;; easy for a user to deal with this problem, when using such a
26;;;; terminal. 26;;;; terminal.
27;;;; 27;;;;
diff --git a/lisp/isearch.el b/lisp/isearch.el
index ee50a1424c2..652a4752ba4 100644
--- a/lisp/isearch.el
+++ b/lisp/isearch.el
@@ -1,10 +1,10 @@
1;; Incremental search minor mode. 1;; isearch-mode.el --- incremental search minor mode.
2;; Copyright (C) 1992 Free Software Foundation, Inc. 2
3;; Author: Daniel LaLiberte <liberte@cs.uiuc.edu>
4;; Version: 1.2
5;; Last-Modified: 27 May 1992
3 6
4;; LCD Archive Entry: 7;; Copyright (C) 1992 Free Software Foundation, Inc.
5;; isearch-mode|Daniel LaLiberte|liberte@cs.uiuc.edu
6;; |A minor mode replacement for isearch.el.
7;; |$Date: 92/05/27 11:33:57 $|$Revision: 1.2 $|~/modes/isearch-mode.el
8 8
9;; This file is part of GNU Emacs. 9;; This file is part of GNU Emacs.
10 10
@@ -23,29 +23,7 @@
23;; file named COPYING. Among other things, the copyright notice 23;; file named COPYING. Among other things, the copyright notice
24;; and this notice must be preserved on all copies. 24;; and this notice must be preserved on all copies.
25 25
26;;;==================================================================== 26;;; Commentary:
27;;; Change History
28
29;;; $Header: /import/kaplan/kaplan/liberte/Isearch/RCS/isearch-mode.el,v 1.2 92/05/27 11:33:57 liberte Exp Locker: liberte $
30;;; $Log: isearch-mode.el,v $
31;;; Revision 1.2 92/05/27 11:33:57 liberte
32;;; Several new commands and features have been added. Emacs version
33;;; 19 has a search ring, which is supported here. Other fixes found
34;;; in the version 19 isearch are included here. Also see variables
35;;; search-caps-disable-folding, search-nonincremental-instead,
36;;; search-whitespace-regexp, and commands isearch-toggle-regexp,
37;;; isearch-edit-string,
38;;;
39;;; Semi-modal searching is supported, using a recursive edit. If
40;;; isearching is started non-interactively by calling one of the
41;;; isearch commands (e.g. isearch-forward), it does not return
42;;; until the search is completed. You should still be able switch
43;;; buffers, so be careful not to get things confused.
44;;;
45
46;;; Changes for 1.1
47;;; 3/18/92 Fixed invalid-regexp.
48;;; 3/18/92 Fixed yanking in regexps.
49 27
50;;;==================================================================== 28;;;====================================================================
51;; Instructions 29;; Instructions
@@ -80,6 +58,33 @@
80;; buffer; ideally, the echo area should redisplay the searching status. 58;; buffer; ideally, the echo area should redisplay the searching status.
81;; A select-window-hook might be useful. 59;; A select-window-hook might be useful.
82 60
61;;; Change Log:
62
63;;;====================================================================
64
65;;; $Header: /import/kaplan/kaplan/liberte/Isearch/RCS/isearch-mode.el,v 1.2 92/05/27 11:33:57 liberte Exp Locker: liberte $
66;;; $Log: isearch-mode.el,v $
67;;; Revision 1.2 92/05/27 11:33:57 liberte
68;;; Several new commands and features have been added. Emacs version
69;;; 19 has a search ring, which is supported here. Other fixes found
70;;; in the version 19 isearch are included here. Also see variables
71;;; search-caps-disable-folding, search-nonincremental-instead,
72;;; search-whitespace-regexp, and commands isearch-toggle-regexp,
73;;; isearch-edit-string,
74;;;
75;;; Semi-modal searching is supported, using a recursive edit. If
76;;; isearching is started non-interactively by calling one of the
77;;; isearch commands (e.g. isearch-forward), it does not return
78;;; until the search is completed. You should still be able switch
79;;; buffers, so be careful not to get things confused.
80;;;
81
82;;; Changes for 1.1
83;;; 3/18/92 Fixed invalid-regexp.
84;;; 3/18/92 Fixed yanking in regexps.
85
86;;; Code:
87
83;;;========================================================================= 88;;;=========================================================================
84;;; The following, defined in loaddefs.el, are still used with isearch-mode. 89;;; The following, defined in loaddefs.el, are still used with isearch-mode.
85 90
diff --git a/lisp/kermit.el b/lisp/kermit.el
index 73fbc7e517b..883ed787bd1 100644
--- a/lisp/kermit.el
+++ b/lisp/kermit.el
@@ -1,5 +1,9 @@
1;;Additions to shell mode for use with kermit, etc. 1;;; kermit.el --- additions to shell mode for use with kermit, etc.
2;;Feb 1988, Jeff Norden - jeff@colgate.csnet 2
3;; Author: Jeff Norden <jeff@colgate.csnet>
4;; Created: 15 Feb 1988
5;; Last-modified: 12 Mar 1992
6
3;; Copyright (C) 1988 Free Software Foundation, Inc. 7;; Copyright (C) 1988 Free Software Foundation, Inc.
4 8
5;; This file is part of GNU Emacs. 9;; This file is part of GNU Emacs.
@@ -18,7 +22,7 @@
18;; 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
19;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. 23;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
20 24
21(require 'shell) 25;;; Commentary
22 26
23;; I'm not sure, but I think somebody asked about running kermit under shell 27;; I'm not sure, but I think somebody asked about running kermit under shell
24;; mode a while ago. Anyway, here is some code that I find useful. The result 28;; mode a while ago. Anyway, here is some code that I find useful. The result
@@ -69,6 +73,8 @@
69;; Please let me know if any bugs turn up. 73;; Please let me know if any bugs turn up.
70;; Feb 1988, Jeff Norden - jeff@colgate.csnet 74;; Feb 1988, Jeff Norden - jeff@colgate.csnet
71 75
76(require 'shell)
77
72(defvar kermit-esc-char "\C-\\" "*Kermit's escape char") 78(defvar kermit-esc-char "\C-\\" "*Kermit's escape char")
73 79
74(defun kermit-esc () 80(defun kermit-esc ()
@@ -136,4 +142,4 @@ command `kermit | tr -d '\\015''."
136 (interactive) 142 (interactive)
137 (set-process-filter (get-buffer-process (current-buffer)) nil)) 143 (set-process-filter (get-buffer-process (current-buffer)) nil))
138 144
139 145;;; kermit.el ends here
diff --git a/lisp/progmodes/perl-mode.el b/lisp/progmodes/perl-mode.el
index 250a5622bab..c31de9470a2 100644
--- a/lisp/progmodes/perl-mode.el
+++ b/lisp/progmodes/perl-mode.el
@@ -63,7 +63,7 @@
63;; It may be good style to put a set of redundant braces around your 63;; It may be good style to put a set of redundant braces around your
64;; main program. This will let you reindent it with meta-^q. 64;; main program. This will let you reindent it with meta-^q.
65 65
66;; Known problems (these are all caused by limitations in the elisp 66;; Known problems (these are all caused by limitations in the Emacs Lisp
67;; parsing routine (parse-partial-sexp), which was not designed for such 67;; parsing routine (parse-partial-sexp), which was not designed for such
68;; a rich language; writing a more suitable parser would be a big job): 68;; a rich language; writing a more suitable parser would be a big job):
69;; 1) Regular expression delimitors do not act as quotes, so special 69;; 1) Regular expression delimitors do not act as quotes, so special
diff --git a/lisp/superyank.el b/lisp/superyank.el
index 9746b22a450..c6650468382 100644
--- a/lisp/superyank.el
+++ b/lisp/superyank.el
@@ -48,7 +48,7 @@
48;; modified: 12-Apr-1989 baw (incorp other mail yank features seen on net) 48;; modified: 12-Apr-1989 baw (incorp other mail yank features seen on net)
49;; created : 16-Feb-1989 baw (mod vanilla fn indent-rigidly mail-yank-original) 49;; created : 16-Feb-1989 baw (mod vanilla fn indent-rigidly mail-yank-original)
50 50
51;; Though I wrote this package basically from scratch, as an elisp 51;; Though I wrote this package basically from scratch, as an Emacs Lisp
52;; learning exercise, it was inspired by postings of similar packages to 52;; learning exercise, it was inspired by postings of similar packages to
53;; the gnu.emacs newsgroup over the past month or so. 53;; the gnu.emacs newsgroup over the past month or so.
54;; 54;;
diff --git a/lisp/textmodes/ispell4.el b/lisp/textmodes/ispell4.el
index 04bd066bac8..c32eaf4447e 100644
--- a/lisp/textmodes/ispell4.el
+++ b/lisp/textmodes/ispell4.el
@@ -1,5 +1,8 @@
1;;; ispell.el --- this is the GNU EMACS interface to GNU ISPELL version 3. 1;;; ispell.el --- this is the GNU EMACS interface to GNU ISPELL version 3.
2 2
3;; Maintainer: FSF
4;; Last-Modified: 02 Jun 1992
5
3;;Copyright (C) 1990, 1991 Free Software Foundation, Inc. 6;;Copyright (C) 1990, 1991 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,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;;; Code:
25
21(defvar ispell-have-new-look t 26(defvar ispell-have-new-look t
22 "T if default 'look' program has the -r flag.") 27 "T if default 'look' program has the -r flag.")
23 28