# HG changeset patch # User Richard M. Stallman # Date 804452235 0 # Node ID 17387b7fe5b84c76d721534cbfda2edeb27e4ecd # Parent a46766b7288acc48c14a0158402070f8eef72d64 (Info-goto-node, Info-search): In Transient Mark mode, deactivate the mark. diff -r a46766b7288a -r 17387b7fe5b8 lisp/info.el --- a/lisp/info.el Thu Jun 29 18:43:24 1995 +0000 +++ b/lisp/info.el Thu Jun 29 18:57:15 1995 +0000 @@ -600,6 +600,7 @@ (if trim (setq filename (substring filename 0 trim)))) (let ((trim (string-match "\\s *\\'" nodename))) (if trim (setq nodename (substring nodename 0 trim)))) + (if transient-mark-mode (deactivate-mark)) (Info-find-node (if (equal filename "") nil filename) (if (equal nodename "") "Top" nodename)))) @@ -657,6 +658,7 @@ (defun Info-search (regexp) "Search for REGEXP, starting from point, and select node it's found in." (interactive "sSearch (regexp): ") + (if transient-mark-mode (deactivate-mark)) (if (equal regexp "") (setq regexp Info-last-search) (setq Info-last-search regexp))