* lisp/repeat.el (repeat-on-final-keystroke): Fix type (Bug#8696).

This commit is contained in:
Chong Yidong 2011-06-04 19:00:29 -04:00
parent d30550b193
commit a800408659
2 changed files with 7 additions and 1 deletions

View 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):

View 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 ******************* ;;;;;