diff options
author | Christoph Scholtes <cschol2112@gmail.com> | 2011-10-19 19:40:32 -0600 |
---|---|---|
committer | Christoph Scholtes <cschol2112@gmail.com> | 2011-10-19 19:40:32 -0600 |
commit | 10d5f5137767e2f594e3ffad402d274d3aae66b4 (patch) | |
tree | 5245462470323ed74074b92100121e077747c732 /lisp/emulation | |
parent | 6e317956b7dda5a9460937b5edc7a322c57c3804 (diff) | |
download | emacs-10d5f5137767e2f594e3ffad402d274d3aae66b4.tar.gz emacs-10d5f5137767e2f594e3ffad402d274d3aae66b4.tar.bz2 emacs-10d5f5137767e2f594e3ffad402d274d3aae66b4.zip |
* emulation/cua-base.el (cua-set-mark): Fix case of string.
Diffstat (limited to 'lisp/emulation')
-rw-r--r-- | lisp/emulation/cua-base.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/emulation/cua-base.el b/lisp/emulation/cua-base.el index 918402dc581..9a50352d507 100644 --- a/lisp/emulation/cua-base.el +++ b/lisp/emulation/cua-base.el @@ -1121,7 +1121,7 @@ With a double \\[universal-argument] prefix argument, unconditionally set mark." (pop-to-mark-command))) ((and cua-toggle-set-mark mark-active) (cua--deactivate) - (message "Mark Cleared")) + (message "Mark cleared")) (t (push-mark-command nil nil) (setq cua--explicit-region-start t) |