aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKim F. Storm2003-03-24 11:01:17 +0000
committerKim F. Storm2003-03-24 11:01:17 +0000
commit48ce734b52d73b11de1d772889ec3edd829055c3 (patch)
tree304e17524caf2e9656807281cc8215f9e9546db4
parent0a38b109dcd311c22a37b6aaeb8363e37a435300 (diff)
downloademacs-48ce734b52d73b11de1d772889ec3edd829055c3.tar.gz
emacs-48ce734b52d73b11de1d772889ec3edd829055c3.zip
(cua-set-mark): Check pop-global-mark-quick-repeat.
-rw-r--r--lisp/emulation/cua-base.el3
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/emulation/cua-base.el b/lisp/emulation/cua-base.el
index 254a6b29c75..2e623b1ea3b 100644
--- a/lisp/emulation/cua-base.el
+++ b/lisp/emulation/cua-base.el
@@ -889,7 +889,8 @@ With a double \\[universal-argument] prefix argument, unconditionally set mark."
889 ((eq last-command 'pop-to-mark-command) 889 ((eq last-command 'pop-to-mark-command)
890 (setq this-command 'pop-to-mark-command) 890 (setq this-command 'pop-to-mark-command)
891 (pop-to-mark-command)) 891 (pop-to-mark-command))
892 ((and (eq last-command 'pop-global-mark) (not arg)) 892 ((and pop-global-mark-quick-repeat
893 (eq last-command 'pop-global-mark) (not arg))
893 (setq this-command 'pop-global-mark) 894 (setq this-command 'pop-global-mark)
894 (pop-global-mark)) 895 (pop-global-mark))
895 (arg 896 (arg