diff options
author | Glenn Morris <rgm@gnu.org> | 2011-06-08 00:17:26 -0700 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2011-06-08 00:17:26 -0700 |
commit | 2c5871045a2b87432ad62ebf13672abe81fae0ba (patch) | |
tree | 8b663006c3bc062a409b59bf2e1612290aefe465 /lisp/repeat.el | |
parent | 0de12c52c344cd8fe139e1028908a807c38e9450 (diff) | |
download | emacs-2c5871045a2b87432ad62ebf13672abe81fae0ba.tar.gz |
Merge from emacs-23; up to 2010-06-13T18:15:45Z!eliz@gnu.org.
Diffstat (limited to 'lisp/repeat.el')
-rw-r--r-- | lisp/repeat.el | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lisp/repeat.el b/lisp/repeat.el index b33039b609b..8bab8691b4f 100644 --- a/lisp/repeat.el +++ b/lisp/repeat.el @@ -123,7 +123,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 ******************* ;;;;; |