diff options
author | Glenn Morris <rgm@gnu.org> | 2014-11-08 10:21:38 -0800 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2014-11-08 10:21:38 -0800 |
commit | 416148257afedb97bbe6d732eea3a0c72473dab0 (patch) | |
tree | 959013e867de73a5ad27e013a1637119833e7856 /lisp/emulation | |
parent | 97cd730164baf67617e1031730105523315c068f (diff) | |
parent | 86b1c771e14efcc98f8fe07510a4238bf94ced7b (diff) | |
download | emacs-416148257afedb97bbe6d732eea3a0c72473dab0.tar.gz |
Merge from emacs-24; up to 117687
Diffstat (limited to 'lisp/emulation')
-rw-r--r-- | lisp/emulation/cua-base.el | 6 | ||||
-rw-r--r-- | lisp/emulation/cua-gmrk.el | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/lisp/emulation/cua-base.el b/lisp/emulation/cua-base.el index 0b6891d6d6d..2b4d0f6ba90 100644 --- a/lisp/emulation/cua-base.el +++ b/lisp/emulation/cua-base.el @@ -1015,7 +1015,7 @@ With a double \\[universal-argument] prefix argument, unconditionally set mark." (or (and cua-auto-mark-last-change (cua-pop-to-last-change)) (pop-to-mark-command))) - ((and cua-toggle-set-mark mark-active) + ((and cua-toggle-set-mark (region-active-p)) (cua--deactivate) (message "Mark cleared")) (t @@ -1127,7 +1127,7 @@ If ARG is the atom `-', scroll upward by nearly full screen." (if cua--debug (cond (cua--rectangle (cua--rectangle-assert)) - (mark-active (message "Mark=%d Point=%d" (mark t) (point))))) + ((region-active-p) (message "Mark=%d Point=%d" (mark t) (point))))) (if cua-enable-cursor-indications (cua--update-indications)) @@ -1186,7 +1186,7 @@ If ARG is the atom `-', scroll upward by nearly full screen." (defun cua--select-keymaps () ;; Setup conditions for selecting the proper keymaps in cua--keymap-alist. (setq cua--ena-region-keymap - (and mark-active (not deactivate-mark))) + (and (region-active-p) (not deactivate-mark))) (setq cua--ena-prefix-override-keymap (and cua--ena-region-keymap cua-enable-cua-keys diff --git a/lisp/emulation/cua-gmrk.el b/lisp/emulation/cua-gmrk.el index b77b2105f64..3d6c9d62a26 100644 --- a/lisp/emulation/cua-gmrk.el +++ b/lisp/emulation/cua-gmrk.el @@ -321,7 +321,7 @@ With prefix argument, don't jump to global mark when canceling it." (defun cua-cancel-global-mark () "Cancel the global mark." (interactive) - (if mark-active + (if (region-active-p) (cua-cancel) (if (cua--global-mark-active) (cua--deactivate-global-mark t))) |