diff options
author | David J. MacKenzie <djm@gnu.org> | 1993-10-09 20:03:33 +0000 |
---|---|---|
committer | David J. MacKenzie <djm@gnu.org> | 1993-10-09 20:03:33 +0000 |
commit | 17155f95f8e1f363fb5c6c8f7f86ccdb988024ea (patch) | |
tree | 461f3ad7908bd52af09e18c371352f41c3dfdd7f /lisp/isearch.el | |
parent | b307d4cac155367fa3dc2747500f36c8d363e9de (diff) | |
download | emacs-17155f95f8e1f363fb5c6c8f7f86ccdb988024ea.tar.gz |
comment fix
Diffstat (limited to 'lisp/isearch.el')
-rw-r--r-- | lisp/isearch.el | 23 |
1 files changed, 1 insertions, 22 deletions
diff --git a/lisp/isearch.el b/lisp/isearch.el index 428d750c6ad..0e39cdcb845 100644 --- a/lisp/isearch.el +++ b/lisp/isearch.el @@ -4,7 +4,7 @@ ;; Author: Daniel LaLiberte <liberte@cs.uiuc.edu> -;; |$Date: 1993/08/13 06:32:49 $|$Revision: 1.49 $ +;; |$Date: 1993/10/09 20:00:23 $|$Revision: 1.50 $ ;; This file is part of GNU Emacs. @@ -28,32 +28,11 @@ ;;;==================================================================== ;; Instructions -;; Searching with isearch-mode.el should work just like isearch.el, -;; except it is done in a temporary minor mode that terminates when -;; you finish searching. - -;; To use isearch-mode instead of the standard isearch.el, add the -;; following to your .emacs file. The standard key bindings to -;; isearch-forward, etc, will then use isearch-mode instead of -;; isearch. - -;; (defalias 'isearch 'isearch-mode) -;; (autoload 'isearch-mode "isearch-mode") - ;; For programmed use of isearch-mode, e.g. calling (isearch-forward), ;; isearch-mode behaves modally and does not return until the search ;; is completed. It uses a recursive-edit to behave this way. Note: ;; gnus does it wrong: (call-interactively 'isearch-forward). -;; If any package you use invokes isearching non-interactively to get -;; the modal behavior described above, you must use the redefinitions -;; of isearch-forward, etc. found in this file instead of those in -;; loaddefs.el. The simplest way to ensure this is to just load -;; isearch-mode explicitly in your .emacs instead of using the above -;; defalias and autoload. - -;; (load "isearch-mode") - ;; The key bindings active within isearch-mode are defined below in ;; `isearch-mode-map' which is given bindings close to the default ;; characters of the original isearch.el. With `isearch-mode', |