]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix CUA Mode menu entry to be less confusing
authorStefan Kangas <stefan@marxist.se>
Thu, 29 Oct 2020 14:45:07 +0000 (15:45 +0100)
committerStefan Kangas <stefan@marxist.se>
Thu, 29 Oct 2020 14:50:21 +0000 (15:50 +0100)
Note that the old text was incorrect; shift-selection is controlled by
the variable shift-select-mode.

* lisp/menu-bar.el (menu-bar-options-menu): Make CUA Mode menu entry
less confusing when cua-enable-cua-keys is nil.  (Bug#43322)

lisp/menu-bar.el

index f9afc8a5f31129b475ee8d9062010f81efb1fc27..c6ced689a6723bad99456b08197f56262db8734a 100644 (file)
@@ -1570,8 +1570,8 @@ mail status in mode line"))
     (bindings--define-key menu [cua-emulation-mode]
       (menu-bar-make-mm-toggle
        cua-mode
-       "Shift movement mark region (CUA)"
-       "Use shifted movement keys to set and extend the region"
+       "CUA Mode (without C-x/C-c/C-v)"
+       "Enable CUA Mode without rebinding C-x/C-c/C-v keys"
        (:visible (and (boundp 'cua-enable-cua-keys)
                      (not cua-enable-cua-keys)))))