aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChong Yidong2010-08-07 16:10:30 -0400
committerChong Yidong2010-08-07 16:10:30 -0400
commit1bcb9e6575ee9a73a01fae63908e5a57ebeff34b (patch)
tree2815140532e47fce0796cc61080d06a815ad82bd
parent9852377f7860205876bbea901d534213d3cca639 (diff)
downloademacs-1bcb9e6575ee9a73a01fae63908e5a57ebeff34b.tar.gz
emacs-1bcb9e6575ee9a73a01fae63908e5a57ebeff34b.zip
Fix last change.
-rw-r--r--lisp/simple.el3
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/simple.el b/lisp/simple.el
index dd7f512e8ae..a3458531bbf 100644
--- a/lisp/simple.el
+++ b/lisp/simple.el
@@ -3686,7 +3686,8 @@ This function also runs `deactivate-mark-hook'."
3686 ((/= (region-beginning) (region-end)) 3686 ((/= (region-beginning) (region-end))
3687 (x-set-selection 'PRIMARY 3687 (x-set-selection 'PRIMARY
3688 (buffer-substring-no-properties 3688 (buffer-substring-no-properties
3689 (point) (mark)))))) 3689 (region-beginning)
3690 (region-end))))))
3690 (if (and (null force) 3691 (if (and (null force)
3691 (or (eq transient-mark-mode 'lambda) 3692 (or (eq transient-mark-mode 'lambda)
3692 (and (eq (car-safe transient-mark-mode) 'only) 3693 (and (eq (car-safe transient-mark-mode) 'only)