diff options
| author | Richard M. Stallman | 1993-05-15 20:05:36 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1993-05-15 20:05:36 +0000 |
| commit | 20f3a745bb2ac52425d97c0d061ffcf83be7e98a (patch) | |
| tree | c2a4c448e1c54858da35f6cf54eb4c2b8821e731 | |
| parent | 8494bbf1a7731cfab7b196670fe4ff93eaceb56f (diff) | |
| download | emacs-20f3a745bb2ac52425d97c0d061ffcf83be7e98a.tar.gz emacs-20f3a745bb2ac52425d97c0d061ffcf83be7e98a.zip | |
(isearch-done): Don't activate mark.
| -rw-r--r-- | lisp/isearch.el | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/lisp/isearch.el b/lisp/isearch.el index 0fd896f1c70..9833d7d0126 100644 --- a/lisp/isearch.el +++ b/lisp/isearch.el | |||
| @@ -4,7 +4,7 @@ | |||
| 4 | 4 | ||
| 5 | ;; Author: Daniel LaLiberte <liberte@cs.uiuc.edu> | 5 | ;; Author: Daniel LaLiberte <liberte@cs.uiuc.edu> |
| 6 | 6 | ||
| 7 | ;; |$Date: 1993/04/23 07:31:14 $|$Revision: 1.31 $ | 7 | ;; |$Date: 1993/05/14 18:02:55 $|$Revision: 1.32 $ |
| 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. |
| @@ -92,8 +92,12 @@ | |||
| 92 | ;;;==================================================================== | 92 | ;;;==================================================================== |
| 93 | ;;; Change History | 93 | ;;; Change History |
| 94 | 94 | ||
| 95 | ;;; $Header: /home/fsf/rms/e19/lisp/RCS/isearch.el,v 1.31 1993/04/23 07:31:14 eric Exp rms $ | 95 | ;;; $Header: /gd/gnu/emacs/19.0/lisp/RCS/isearch.el,v 1.32 1993/05/14 18:02:55 rms Exp rms $ |
| 96 | ;;; $Log: isearch.el,v $ | 96 | ;;; $Log: isearch.el,v $ |
| 97 | ; Revision 1.32 1993/05/14 18:02:55 rms | ||
| 98 | ; (isearch-mode-map): Handle any length vector in keymap. | ||
| 99 | ; (isearch-char-to-string): Handle non-character events properly. | ||
| 100 | ; | ||
| 97 | ; Revision 1.31 1993/04/23 07:31:14 eric | 101 | ; Revision 1.31 1993/04/23 07:31:14 eric |
| 98 | ; Replaced all fsets with defaliases. | 102 | ; Replaced all fsets with defaliases. |
| 99 | ; | 103 | ; |
| @@ -676,6 +680,8 @@ is treated as a regexp. See \\[isearch-forward] for more info." | |||
| 676 | (if (/= (point) isearch-opoint) | 680 | (if (/= (point) isearch-opoint) |
| 677 | (progn | 681 | (progn |
| 678 | (push-mark isearch-opoint t) | 682 | (push-mark isearch-opoint t) |
| 683 | (if transient-mark-mode | ||
| 684 | (setq mark-active nil)) | ||
| 679 | (or executing-macro (> (minibuffer-depth) 0) | 685 | (or executing-macro (> (minibuffer-depth) 0) |
| 680 | (message "Mark saved where search started"))) | 686 | (message "Mark saved where search started"))) |
| 681 | ;; (message "") why is this needed? | 687 | ;; (message "") why is this needed? |