From a800408659eaa9ac63e299ae750046300634e1f9 Mon Sep 17 00:00:00 2001 From: Chong Yidong Date: Sat, 4 Jun 2011 19:00:29 -0400 Subject: [PATCH] * lisp/repeat.el (repeat-on-final-keystroke): Fix type (Bug#8696). --- lisp/ChangeLog | 4 ++++ lisp/repeat.el | 4 +++- 2 files changed, 7 insertions(+), 1 deletion(-) 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 + + * repeat.el (repeat-on-final-keystroke): Fix type (Bug#8696). + 2011-06-04 Juanma Barranquero * 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 ******************* ;;;;; -- 2.39.5