diff options
author | Chong Yidong <cyd@stupidchicken.com> | 2009-07-17 23:27:28 +0000 |
---|---|---|
committer | Chong Yidong <cyd@stupidchicken.com> | 2009-07-17 23:27:28 +0000 |
commit | 6f3a268219ecb338e7d25a0d2cdbfc6240d76271 (patch) | |
tree | 5d2cbe049e87914b2bd54f9809c79d79fbf22eb5 /lisp/mouse.el | |
parent | 6c6a75d5824928e4aa66de9f89d74cb38102e4dc (diff) | |
download | emacs-6f3a268219ecb338e7d25a0d2cdbfc6240d76271.tar.gz |
Fix last change.
Diffstat (limited to 'lisp/mouse.el')
-rw-r--r-- | lisp/mouse.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/mouse.el b/lisp/mouse.el index 9e25078e72a..168a82e1742 100644 --- a/lisp/mouse.el +++ b/lisp/mouse.el @@ -1373,7 +1373,7 @@ before inserting the text." (when select-active-regions ;; Without this, confusing things happen upon e.g. inserting into ;; the middle of an active region. - (deactivate-mark t)) + (deactivate-mark)) (or mouse-yank-at-point (mouse-set-point click)) (setq this-command 'yank) (setq mouse-selection-click-count 0) @@ -1390,7 +1390,7 @@ regardless of where you click." (when select-active-regions ;; Without this, confusing things happen upon e.g. inserting into ;; the middle of an active region. - (deactivate-mark t)) + (deactivate-mark)) (or mouse-yank-at-point (mouse-set-point click)) (let ((primary (x-get-selection 'PRIMARY))) (if primary |