comparison lisp/isearch.el @ 2230:6314334d7c2b

Add standard library headers.
author Eric S. Raymond <esr@snark.thyrsus.com>
date Wed, 17 Mar 1993 15:58:09 +0000
parents 9234ebe088c9
children 4f9d60f7de9d
comparison
equal deleted inserted replaced
2229:bd3c525fa6fc 2230:6314334d7c2b
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.
11 11
12 ;; GNU Emacs is distributed in the hope that it will be useful, 12 ;; GNU Emacs is distributed in the hope that it will be useful,
22 ;; supposed to have been given to you along with GNU Emacs so you 22 ;; supposed to have been given to you along with GNU Emacs so you
23 ;; can know your rights and responsibilities. It should be in a 23 ;; can know your rights and responsibilities. It should be in a
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
30 ;; Searching with isearch-mode.el should work just like isearch.el, 32 ;; Searching with isearch-mode.el should work just like isearch.el,
31 ;; except it is done in a temporary minor mode that terminates when 33 ;; except it is done in a temporary minor mode that terminates when
83 ;; TODO 85 ;; TODO
84 ;; - Integrate the emacs 19 generalized commmand history. 86 ;; - Integrate the emacs 19 generalized commmand history.
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 ;
96 ; Revision 1.21 1993/03/07 04:22:00 rms 105 ; Revision 1.21 1993/03/07 04:22:00 rms
97 ; (isearch-unread): Find last list element by hand. 106 ; (isearch-unread): Find last list element by hand.
184 193
185 ;;; Changes for 1.1 194 ;;; Changes for 1.1
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 ;;;=========================================================================
192 ;;; Emacs features 202 ;;; Emacs features
193 203
1572 ;; this-command 'isearch-printing-char)))) 1582 ;; this-command 'isearch-printing-char))))
1573 ;; )) 1583 ;; ))
1574 1584
1575 ;;)) 1585 ;;))
1576 1586
1587 ;;; isearch.el ends here