diff options
author | Glenn Morris <rgm@gnu.org> | 2012-09-28 01:01:08 -0700 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2012-09-28 01:01:08 -0700 |
commit | 96fb71705b3d2aa1eaf2ecd0e447d23995b74b6e (patch) | |
tree | df95f68a33d52b1d0c7590f18a0915295c4e0b68 /lisp/type-break.el | |
parent | d2dd3694575406be063943bdf6e76ecbecebcc94 (diff) | |
download | emacs-96fb71705b3d2aa1eaf2ecd0e447d23995b74b6e.tar.gz emacs-96fb71705b3d2aa1eaf2ecd0e447d23995b74b6e.tar.bz2 emacs-96fb71705b3d2aa1eaf2ecd0e447d23995b74b6e.zip |
Don't autoload defcustoms in type-break.el
* type-break.el (type-break-mode, type-break-interval)
(type-break-good-rest-interval, type-break-keystroke-threshold):
No need to autoload.
(type-break-good-rest-interval, type-break-keystroke-threshold):
Add :set-after.
Diffstat (limited to 'lisp/type-break.el')
-rw-r--r-- | lisp/type-break.el | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/lisp/type-break.el b/lisp/type-break.el index 8a95508d939..b3749853b77 100644 --- a/lisp/type-break.el +++ b/lisp/type-break.el @@ -69,7 +69,6 @@ :prefix "type-break" :group 'keyboard) -;;;###autoload (defcustom type-break-mode nil "Toggle typing break mode. See the docstring for the `type-break-mode' command for more information. @@ -82,13 +81,11 @@ use either \\[customize] or the function `type-break-mode'." :group 'type-break :require 'type-break) -;;;###autoload (defcustom type-break-interval (* 60 60) "Number of seconds between scheduled typing breaks." :type 'integer :group 'type-break) -;;;###autoload (defcustom type-break-good-rest-interval (/ type-break-interval 6) "Number of seconds of idle time considered to be an adequate typing rest. @@ -98,10 +95,10 @@ rest from typing, then the next typing break is simply rescheduled for later. If a break is interrupted before this much time elapses, the user will be asked whether or not really to interrupt the break." + :set-after '(type-break-interval) :type 'integer :group 'type-break) -;;;###autoload (defcustom type-break-good-break-interval nil "Number of seconds considered to be an adequate explicit typing rest. @@ -112,7 +109,6 @@ break interruptions when `type-break-good-rest-interval' is nil." :type 'integer :group 'type-break) -;;;###autoload (defcustom type-break-keystroke-threshold ;; Assuming typing speed is 35wpm (on the average, do you really ;; type more than that in a minute? I spend a lot of time reading mail @@ -147,6 +143,7 @@ keystroke even though they really require multiple keys to generate them. The command `type-break-guesstimate-keystroke-threshold' can be used to guess a reasonably good pair of values for this variable." + :set-after '(type-break-interval) :type 'sexp :group 'type-break) |