;; 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.
;;;====================================================================
;; 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',