aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/emulation
diff options
context:
space:
mode:
authorKim F. Storm <[email protected]>2002-05-27 12:14:52 +0000
committerKim F. Storm <[email protected]>2002-05-27 12:14:52 +0000
commitfc803e8d1abddbc32fd1e5112649327c8f3075fd (patch)
tree9b0154d1e17970021e1eb62b0579c7703ade1581 /lisp/emulation
parentd00ffe213e842d85380d1ba2e6d9e96d11bdc104 (diff)
(cua-set-mark): Align pop to marko
behaviour with standard set-mark-command. (cua--pre-command-handler): Use push-mark-command. (cua-repeat-replace-region): Improve functionality when repeated after moving point or changing buffer.
Diffstat (limited to 'lisp/emulation')
-rw-r--r--lisp/emulation/cua-base.el31
1 files changed, 17 insertions, 14 deletions
diff --git a/lisp/emulation/cua-base.el b/lisp/emulation/cua-base.el
index b8de83fd3d..a90ed83701 100644
--- a/lisp/emulation/cua-base.el
+++ b/lisp/emulation/cua-base.el
@@ -814,10 +814,14 @@ Activates the mark if a prefix argument is given."
"Repeat replacing text of highlighted region with typed text.
Searches for the next streach of text identical to the region last
replaced by typing text over it and replaces it with the same streach
-of text. Note: Works reliable only when repeated immediately after
-typing the last character."
+of text.
+Note: Works only when used immediately after typing the last character.
+After that, it can be repeated (fairly) reliable until a buffer is
+modified in any other way than repeating this command."
(interactive "P")
- (unless (eq this-command last-command)
+ (unless (or (eq this-command last-command)
+ (not cua--repeat-replace-text)
+ (not (eq last-command 'self-insert-command)))
(setq cua--repeat-replace-text
(and (mark t)
(/= (point) (mark t))
@@ -846,21 +850,20 @@ With argument, jump to mark, and pop a new position for mark off the ring;
then it jumps to the next mark off the ring if repeated with no argument, or
sets the mark at the new position if repeated with argument."
(interactive "P")
- (if (and (eq this-command last-command)
- last-prefix-arg)
- (setq arg (if arg nil last-prefix-arg)
- current-prefix-arg arg))
(cond
+ ((eq last-command 'pop-to-mark-command)
+ (if (and (consp arg) (> (prefix-numeric-value arg) 4))
+ (push-mark-command nil)
+ (setq this-command 'pop-to-mark-command)
+ (pop-to-mark-command)))
(arg
- (if (null (mark t))
- (error "No mark set in this buffer")
- (goto-char (mark t))
- (pop-mark)))
+ (setq this-command 'pop-to-mark-command)
+ (pop-to-mark-command))
(mark-active
(cua--deactivate)
(message "Mark Cleared"))
(t
- (push-mark nil nil t)
+ (push-mark-command nil nil)
(setq cua--explicit-region-start t)
(setq cua--last-region-shifted nil)
(if cua-enable-region-auto-help
@@ -923,12 +926,12 @@ Extra commands should be added to `cua-user-movement-commands'")
(cond
((memq 'shift (event-modifiers (aref (this-single-command-raw-keys) 0)))
(unless mark-active
- (push-mark nil t t))
+ (push-mark-command nil t))
(setq cua--last-region-shifted t)
(setq cua--explicit-region-start nil))
((or cua--explicit-region-start cua--rectangle)
(unless mark-active
- (push-mark nil nil t)))
+ (push-mark-command nil nil)))
(t
;; If we set mark-active to nil here, the region highlight will not be
;; removed by the direct_output_ commands.