aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKim F. Storm2003-03-31 21:48:39 +0000
committerKim F. Storm2003-03-31 21:48:39 +0000
commitce92443fd01834e04ac95ed670e38d4dba2473df (patch)
tree1ec13a75072d6689095c306d11994d832b9b7f77
parent049eb0cb9728969f872958f0f01c94fb8854dfd7 (diff)
downloademacs-ce92443fd01834e04ac95ed670e38d4dba2473df.tar.gz
emacs-ce92443fd01834e04ac95ed670e38d4dba2473df.zip
(cua-set-mark): Unconditionally repeat
pop-global-mark without C-x prefix. Fix doc.
-rw-r--r--lisp/emulation/cua-base.el9
1 files changed, 5 insertions, 4 deletions
diff --git a/lisp/emulation/cua-base.el b/lisp/emulation/cua-base.el
index 2e623b1ea3b..34f79e9cb28 100644
--- a/lisp/emulation/cua-base.el
+++ b/lisp/emulation/cua-base.el
@@ -878,8 +878,10 @@ global mark ring if last mark was set in another buffer.
878With argument, jump to mark, and pop a new position for mark off 878With argument, jump to mark, and pop a new position for mark off
879the local mark ring \(this does not affect the global mark ring\). 879the local mark ring \(this does not affect the global mark ring\).
880Use \\[pop-global-mark] to jump to a mark off the global mark ring 880Use \\[pop-global-mark] to jump to a mark off the global mark ring
881\(see `pop-global-mark'\). Repeating the command without the prefix 881\(see `pop-global-mark'\).
882jumps to the next position off the local \(or global\) mark ring. 882
883Repeating the command without the prefix jumps to the next position
884off the local \(or global\) mark ring.
883 885
884With a double \\[universal-argument] prefix argument, unconditionally set mark." 886With a double \\[universal-argument] prefix argument, unconditionally set mark."
885 (interactive "P") 887 (interactive "P")
@@ -889,8 +891,7 @@ With a double \\[universal-argument] prefix argument, unconditionally set mark."
889 ((eq last-command 'pop-to-mark-command) 891 ((eq last-command 'pop-to-mark-command)
890 (setq this-command 'pop-to-mark-command) 892 (setq this-command 'pop-to-mark-command)
891 (pop-to-mark-command)) 893 (pop-to-mark-command))
892 ((and pop-global-mark-quick-repeat 894 ((and (eq last-command 'pop-global-mark) (not arg))
893 (eq last-command 'pop-global-mark) (not arg))
894 (setq this-command 'pop-global-mark) 895 (setq this-command 'pop-global-mark)
895 (pop-global-mark)) 896 (pop-global-mark))
896 (arg 897 (arg