diff options
| author | Juanma Barranquero | 2003-05-06 17:50:17 +0000 |
|---|---|---|
| committer | Juanma Barranquero | 2003-05-06 17:50:17 +0000 |
| commit | ee6258ff774dc48dec7cf48a1d772e6fdb9282bf (patch) | |
| tree | 18bffac306bb822a5af0d141e2671eececb59c58 | |
| parent | 74dfa72fa39e60f963a8dbbdcbee995c2322a3f7 (diff) | |
| download | emacs-ee6258ff774dc48dec7cf48a1d772e6fdb9282bf.tar.gz emacs-ee6258ff774dc48dec7cf48a1d772e6fdb9282bf.zip | |
(type-break-good-rest-interval, type-break-query-mode)
(type-break-query-function, type-break-mode-line-message-mode): Don't quote nil
and t in docstrings.
| -rw-r--r-- | lisp/type-break.el | 10 |
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 | ||
| 100 | When this variable is non-`nil', emacs checks the idle time between | 100 | When this variable is non-nil, emacs checks the idle time between |
| 101 | keystrokes. If this idle time is long enough to be considered a \"good\" | 101 | keystrokes. If this idle time is long enough to be considered a \"good\" |
| 102 | rest from typing, then the next typing break is simply rescheduled for later. | 102 | rest 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. |
| 149 | If so, call the function specified in the value of the variable | 149 | If 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 | |||
| 156 | It should take a string as an argument, the prompt. | 156 | It should take a string as an argument, the prompt. |
| 157 | Usually this should be set to `yes-or-no-p' or `y-or-n-p'. | 157 | Usually this should be set to `yes-or-no-p' or `y-or-n-p'. |
| 158 | 158 | ||
| 159 | To avoid being queried at all, set `type-break-query-mode' to `nil'." | 159 | To 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. |
| 226 | Otherwise, messages typically go in the echo area. | 226 | Otherwise, messages typically go in the echo area. |
| 227 | 227 | ||
| 228 | See also `type-break-mode-line-format' and its members." | 228 | See also `type-break-mode-line-format' and its members." |