From: Roland McGrath Date: Thu, 8 Jul 1993 22:42:14 +0000 (+0000) Subject: (kill-ring-save): Call deactivate-mark regardless of transient-mark-mode. X-Git-Tag: emacs-19.34~11807 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=e4e593ae57292725cebc42c869f6fa0c27488770;p=emacs.git (kill-ring-save): Call deactivate-mark regardless of transient-mark-mode. --- diff --git a/lisp/simple.el b/lisp/simple.el index f69efad6872..dfca44cffc6 100644 --- a/lisp/simple.el +++ b/lisp/simple.el @@ -1094,7 +1094,7 @@ system cut and paste." (goto-char opoint) ;; If user quit, deactivate the mark ;; as C-g would as a command. - (and quit-flag transient-mark-mode mark-active + (and quit-flag mark-active (progn (message "foo") ;XXX what is this here for? --roland (deactivate-mark))))