aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/emulation/cua-base.el8
1 files changed, 4 insertions, 4 deletions
diff --git a/lisp/emulation/cua-base.el b/lisp/emulation/cua-base.el
index 5f8fc8533da..9018e0e95d3 100644
--- a/lisp/emulation/cua-base.el
+++ b/lisp/emulation/cua-base.el
@@ -977,12 +977,12 @@ Extra commands should be added to `cua-user-movement-commands'")
977 'cua-copy-region)) 977 'cua-copy-region))
978 ((eq ds 'supersede) 978 ((eq ds 'supersede)
979 (if cua--rectangle 979 (if cua--rectangle
980 'cua-delete-rectangle ;; replace? 980 'cua-delete-rectangle
981 'cua-replace-region)) 981 'cua-delete-region))
982 (t 982 (t
983 (if cua--rectangle 983 (if cua--rectangle
984 'cua-delete-rectangle 984 'cua-delete-rectangle ;; replace?
985 'cua-delete-region))))) 985 'cua-replace-region)))))
986 (if nc 986 (if nc
987 (setq this-original-command this-command 987 (setq this-original-command this-command
988 this-command nc))))) 988 this-command nc)))))