diff options
author | Richard M. Stallman <rms@gnu.org> | 1992-10-11 05:25:11 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1992-10-11 05:25:11 +0000 |
commit | 49c13105577e13b31a84622348b37d1724fbcdc4 (patch) | |
tree | cced269cb14721ebfdf6385e04f9faf70d4e7f48 /lisp/isearch.el | |
parent | c395cc7b236df7dec280977924c091e7876f22fa (diff) | |
download | emacs-49c13105577e13b31a84622348b37d1724fbcdc4.tar.gz |
(isearch-ring-advance-edit): Delete spurious `)'.
Diffstat (limited to 'lisp/isearch.el')
-rw-r--r-- | lisp/isearch.el | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/lisp/isearch.el b/lisp/isearch.el index 4b909d5d428..2399603865f 100644 --- a/lisp/isearch.el +++ b/lisp/isearch.el @@ -4,7 +4,7 @@ ;; LCD Archive Entry: ;; isearch-mode|Daniel LaLiberte|liberte@cs.uiuc.edu ;; |A minor mode replacement for isearch.el. -;; |$Date: 92/09/14 16:26:02 $|$Revision: 1.4 $|~/modes/isearch-mode.el +;; |$Date: 1992/09/21 08:28:43 $|$Revision: 1.10 $|~/modes/isearch-mode.el ;; This file is not yet part of GNU Emacs, but it is based almost ;; entirely on isearch.el which is part of GNU Emacs. @@ -88,8 +88,11 @@ ;;;==================================================================== ;;; Change History -;;; $Header: /import/kaplan/kaplan/liberte/Isearch/RCS/isearch-mode.el,v 1.4 92/09/14 16:26:02 liberte Exp Locker: liberte $ -;;; $Log: isearch-mode.el,v $ +;;; $Header: /gd/gnu/emacs/19.0/lisp/RCS/isearch-mode.el,v 1.10 1992/09/21 08:28:43 rms Exp rms $ +;;; $Log: isearch-mode.el,v $ +; Revision 1.10 1992/09/21 08:28:43 rms +; entered into RCS +; ;;; Revision 1.4 92/09/14 16:26:02 liberte ;;; Added prefix args to isearch-forward, etc. to switch between ;;; string and regular expression searching. @@ -1114,7 +1117,7 @@ If not in regexp mode, activate word search." (erase-buffer) (insert (nth yank-pointer ring)) - (goto-char (point-max)))))) + (goto-char (point-max))))) (defun isearch-ring-retreat-edit (n) "Inserts the previous element of the search history into the minibuffer." |