aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/emulation
diff options
context:
space:
mode:
authorKim F. Storm <[email protected]>2002-05-10 11:21:10 +0000
committerKim F. Storm <[email protected]>2002-05-10 11:21:10 +0000
commitc1cdea1a7925500bf8c3b005cd965d3b877bcfc5 (patch)
tree83a09eadb67ffd9144673c00aa658be027dd1d4d /lisp/emulation
parent92cdb6277738a16f1baf4ba016253b96d9300ef1 (diff)
(cua-enable-cua-keys)
(cua-enable-register-prefix): Added value for `other' choice.
Diffstat (limited to 'lisp/emulation')
-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 354bc6fff6..95423ea5ff 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
enabled."
:type '(choice (const :tag "Disabled" nil)
(const :tag "Shift region only" shift)
- (other :tag "Enabled"))
+ (other :tag "Enabled" t))
:group 'cua)
(defcustom cua-highlight-region-shift-only nil
@@ -301,7 +301,7 @@ interpreted as a register number."
:type '(choice (const :tag "Disabled" nil)
(const :tag "Enabled, but C-u arg is not a register" not-ctrl-u)
(const :tag "Enabled, but only for C-u arg" ctrl-u-only)
- (other :tag "Enabled"))
+ (other :tag "Enabled" t))
:group 'cua)
(defcustom cua-delete-copy-to-register-0 t