]> git.eshelyaron.com Git - emacs.git/commitdiff
* lisp/repeat.el (repeat-on-final-keystroke): Fix type (Bug#8696).
authorChong Yidong <cyd@stupidchicken.com>
Sat, 4 Jun 2011 23:00:29 +0000 (19:00 -0400)
committerChong Yidong <cyd@stupidchicken.com>
Sat, 4 Jun 2011 23:00:29 +0000 (19:00 -0400)
lisp/ChangeLog
lisp/repeat.el

index 8abc61b4abbb376c06a377af65b27e73fef5aa3a..2eab5ba254b497c93b498dccc5e7f451d8302b58 100644 (file)
@@ -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):
index ab0c42a0ddeb8dd76b09f7bc4bdd725fd1afe50c..a25b68d6220a23bb5a945590879c300a47693090 100644 (file)
@@ -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 ******************* ;;;;;