aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKim F. Storm2002-05-10 11:21:10 +0000
committerKim F. Storm2002-05-10 11:21:10 +0000
commitc1cdea1a7925500bf8c3b005cd965d3b877bcfc5 (patch)
tree83a09eadb67ffd9144673c00aa658be027dd1d4d
parent92cdb6277738a16f1baf4ba016253b96d9300ef1 (diff)
downloademacs-c1cdea1a7925500bf8c3b005cd965d3b877bcfc5.tar.gz
emacs-c1cdea1a7925500bf8c3b005cd965d3b877bcfc5.zip
(cua-enable-cua-keys)
(cua-enable-register-prefix): Added value for `other' choice.
-rw-r--r--lisp/emulation/cua-base.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/emulation/cua-base.el b/lisp/emulation/cua-base.el
index 354bc6fff60..95423ea5ff1 100644
--- a/lisp/emulation/cua-base.el
+++ b/lisp/emulation/cua-base.el
@@ -259,7 +259,7 @@ a shifted movement key. If the value is nil, these keys are never
259enabled." 259enabled."
260 :type '(choice (const :tag "Disabled" nil) 260 :type '(choice (const :tag "Disabled" nil)
261 (const :tag "Shift region only" shift) 261 (const :tag "Shift region only" shift)
262 (other :tag "Enabled")) 262 (other :tag "Enabled" t))
263 :group 'cua) 263 :group 'cua)
264 264
265(defcustom cua-highlight-region-shift-only nil 265(defcustom cua-highlight-region-shift-only nil
@@ -301,7 +301,7 @@ interpreted as a register number."
301 :type '(choice (const :tag "Disabled" nil) 301 :type '(choice (const :tag "Disabled" nil)
302 (const :tag "Enabled, but C-u arg is not a register" not-ctrl-u) 302 (const :tag "Enabled, but C-u arg is not a register" not-ctrl-u)
303 (const :tag "Enabled, but only for C-u arg" ctrl-u-only) 303 (const :tag "Enabled, but only for C-u arg" ctrl-u-only)
304 (other :tag "Enabled")) 304 (other :tag "Enabled" t))
305 :group 'cua) 305 :group 'cua)
306 306
307(defcustom cua-delete-copy-to-register-0 t 307(defcustom cua-delete-copy-to-register-0 t