summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChong Yidong <cyd@stupidchicken.com>2011-06-04 19:00:29 -0400
committerChong Yidong <cyd@stupidchicken.com>2011-06-04 19:00:29 -0400
commita800408659eaa9ac63e299ae750046300634e1f9 (patch)
treec90a59b06a8f778918dc1f8e1df512c62c73e238
parentd30550b193d253aa054816f21b6f6a190ee7b3a1 (diff)
downloademacs-a800408659eaa9ac63e299ae750046300634e1f9.tar.gz
* lisp/repeat.el (repeat-on-final-keystroke): Fix type (Bug#8696).
-rw-r--r--lisp/ChangeLog4
-rw-r--r--lisp/repeat.el4
2 files changed, 7 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 8abc61b4abb..2eab5ba254b 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,7 @@
+2011-06-04 Chong Yidong <cyd@stupidchicken.com>
+
+ * repeat.el (repeat-on-final-keystroke): Fix type (Bug#8696).
+
2011-06-04 Juanma Barranquero <lekktu@gmail.com>
* loadhist.el (unload-feature-special-hooks):
diff --git a/lisp/repeat.el b/lisp/repeat.el
index ab0c42a0dde..a25b68d6220 100644
--- a/lisp/repeat.el
+++ b/lisp/repeat.el
@@ -124,7 +124,9 @@ if `repeat' is bound to C-x z, typing C-x z z z repeats the previous command
only occurs if the final character by which `repeat' was invoked is a
member of that sequence. If this variable is nil, no re-execution occurs."
:group 'convenience
- :type 'boolean)
+ :type '(choice (const :tag "Repeat for all keys" t)
+ (const :tag "Don't repeat" nil)
+ (sexp :tag "Repeat for specific keys")))
;;;;; ****************** HACKS TO THE REST OF EMACS ******************* ;;;;;