emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] /srv/bzr/emacs/emacs-23 r100593: * lisp/repeat.el (repeat-


From: Chong Yidong
Subject: [Emacs-diffs] /srv/bzr/emacs/emacs-23 r100593: * lisp/repeat.el (repeat-on-final-keystroke): Fix type (Bug#8696).
Date: Sat, 04 Jun 2011 19:00:29 -0400
User-agent: Bazaar (2.3.1)

------------------------------------------------------------
revno: 100593
committer: Chong Yidong <address@hidden>
branch nick: emacs-23
timestamp: Sat 2011-06-04 19:00:29 -0400
message:
  * lisp/repeat.el (repeat-on-final-keystroke): Fix type (Bug#8696).
modified:
  lisp/ChangeLog
  lisp/repeat.el
=== modified file 'lisp/ChangeLog'
--- a/lisp/ChangeLog    2011-06-04 21:30:14 +0000
+++ b/lisp/ChangeLog    2011-06-04 23:00:29 +0000
@@ -1,3 +1,7 @@
+2011-06-04  Chong Yidong  <address@hidden>
+
+       * repeat.el (repeat-on-final-keystroke): Fix type (Bug#8696).
+
 2011-06-04  Juanma Barranquero  <address@hidden>
 
        * loadhist.el (unload-feature-special-hooks):

=== modified file 'lisp/repeat.el'
--- a/lisp/repeat.el    2011-01-02 23:50:46 +0000
+++ b/lisp/repeat.el    2011-06-04 23:00:29 +0000
@@ -124,7 +124,9 @@
 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 ******************* ;;;;;
 


reply via email to

[Prev in Thread] Current Thread [Next in Thread]