# HG changeset patch # User Richard M. Stallman # Date 737496336 0 # Node ID 2a9665f8ffe91b41817f4b410a0a8d699c31711e # Parent a7b260d27c2c877841c76a2a15208c4510b99dcf (isearch-done): Don't activate mark. diff -r a7b260d27c2c -r 2a9665f8ffe9 lisp/isearch.el --- a/lisp/isearch.el Sat May 15 19:53:44 1993 +0000 +++ b/lisp/isearch.el Sat May 15 20:05:36 1993 +0000 @@ -4,7 +4,7 @@ ;; Author: Daniel LaLiberte -;; |$Date: 1993/04/23 07:31:14 $|$Revision: 1.31 $ +;; |$Date: 1993/05/14 18:02:55 $|$Revision: 1.32 $ ;; This file is not yet part of GNU Emacs, but it is based almost ;; entirely on isearch.el which is part of GNU Emacs. @@ -92,8 +92,12 @@ ;;;==================================================================== ;;; Change History -;;; $Header: /home/fsf/rms/e19/lisp/RCS/isearch.el,v 1.31 1993/04/23 07:31:14 eric Exp rms $ +;;; $Header: /gd/gnu/emacs/19.0/lisp/RCS/isearch.el,v 1.32 1993/05/14 18:02:55 rms Exp rms $ ;;; $Log: isearch.el,v $ +; Revision 1.32 1993/05/14 18:02:55 rms +; (isearch-mode-map): Handle any length vector in keymap. +; (isearch-char-to-string): Handle non-character events properly. +; ; Revision 1.31 1993/04/23 07:31:14 eric ; Replaced all fsets with defaliases. ; @@ -676,6 +680,8 @@ (if (/= (point) isearch-opoint) (progn (push-mark isearch-opoint t) + (if transient-mark-mode + (setq mark-active nil)) (or executing-macro (> (minibuffer-depth) 0) (message "Mark saved where search started"))) ;; (message "") why is this needed?