Mercurial > emacs
changeset 4840:0be7300b18d9
comment fix
author | David J. MacKenzie <djm@gnu.org> |
---|---|
date | Sat, 09 Oct 1993 20:03:33 +0000 |
parents | 4df93ff816c4 |
children | 8800a7377ceb |
files | lisp/isearch.el |
diffstat | 1 files changed, 1 insertions(+), 22 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/isearch.el Sat Oct 09 20:00:23 1993 +0000 +++ b/lisp/isearch.el Sat Oct 09 20:03:33 1993 +0000 @@ -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',