aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/type-break.el10
1 files changed, 5 insertions, 5 deletions
diff --git a/lisp/type-break.el b/lisp/type-break.el
index ec992796897..660cfef7e50 100644
--- a/lisp/type-break.el
+++ b/lisp/type-break.el
@@ -8,7 +8,7 @@
8;; Status: Works in GNU Emacs 19.25 or later, some versions of XEmacs 8;; Status: Works in GNU Emacs 19.25 or later, some versions of XEmacs
9;; Created: 1994-07-13 9;; Created: 1994-07-13
10 10
11;; $Id: type-break.el,v 1.25 2000/12/03 16:17:49 schwab Exp $ 11;; $Id: type-break.el,v 1.26 2003/04/11 13:06:22 jpw Exp $
12 12
13;; This file is part of GNU Emacs. 13;; This file is part of GNU Emacs.
14 14
@@ -97,7 +97,7 @@ use either \\[customize] or the function `type-break-mode'."
97(defcustom type-break-good-rest-interval (/ type-break-interval 6) 97(defcustom type-break-good-rest-interval (/ type-break-interval 6)
98 "*Number of seconds of idle time considered to be an adequate typing rest. 98 "*Number of seconds of idle time considered to be an adequate typing rest.
99 99
100When this variable is non-`nil', emacs checks the idle time between 100When this variable is non-nil, emacs checks the idle time between
101keystrokes. If this idle time is long enough to be considered a \"good\" 101keystrokes. If this idle time is long enough to be considered a \"good\"
102rest from typing, then the next typing break is simply rescheduled for later. 102rest from typing, then the next typing break is simply rescheduled for later.
103 103
@@ -145,7 +145,7 @@ guess a reasonably good pair of values for this variable."
145 :group 'type-break) 145 :group 'type-break)
146 146
147(defcustom type-break-query-mode t 147(defcustom type-break-query-mode t
148 "*Non-`nil' means ask whether or not to prompt user for breaks. 148 "*Non-nil means ask whether or not to prompt user for breaks.
149If so, call the function specified in the value of the variable 149If so, call the function specified in the value of the variable
150`type-break-query-function' to do the asking." 150`type-break-query-function' to do the asking."
151 :type 'boolean 151 :type 'boolean
@@ -156,7 +156,7 @@ If so, call the function specified in the value of the variable
156It should take a string as an argument, the prompt. 156It should take a string as an argument, the prompt.
157Usually this should be set to `yes-or-no-p' or `y-or-n-p'. 157Usually this should be set to `yes-or-no-p' or `y-or-n-p'.
158 158
159To avoid being queried at all, set `type-break-query-mode' to `nil'." 159To avoid being queried at all, set `type-break-query-mode' to nil."
160 :type '(radio function 160 :type '(radio function
161 (function-item yes-or-no-p) 161 (function-item yes-or-no-p)
162 (function-item y-or-n-p)) 162 (function-item y-or-n-p))
@@ -222,7 +222,7 @@ remove themselves after running.")
222;; Mode line frobs 222;; Mode line frobs
223 223
224(defcustom type-break-mode-line-message-mode nil 224(defcustom type-break-mode-line-message-mode nil
225 "*Non-`nil' means put type-break related messages in the mode line. 225 "*Non-nil means put type-break related messages in the mode line.
226Otherwise, messages typically go in the echo area. 226Otherwise, messages typically go in the echo area.
227 227
228See also `type-break-mode-line-format' and its members." 228See also `type-break-mode-line-format' and its members."