comparison lisp/type-break.el @ 24648:4c102f02bdcd

(type-break-mode): Doc fix.
author Dave Love <fx@gnu.org>
date Tue, 27 Apr 1999 19:00:42 +0000
parents d0b40f823255
children cbe304a26771
comparison
equal deleted inserted replaced
24647:bbed99edbecc 24648:4c102f02bdcd
6 ;; Maintainer: Noah Friedman <friedman@splode.com> 6 ;; Maintainer: Noah Friedman <friedman@splode.com>
7 ;; Keywords: extensions, timers 7 ;; Keywords: extensions, timers
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.20 1999/03/30 21:30:05 kwzh Exp kwzh $ 11 ;; $Id: type-break.el,v 1.21 1999/03/30 21:37:10 kwzh Exp fx $
12 12
13 ;; This file is part of GNU Emacs. 13 ;; This file is part of GNU Emacs.
14 14
15 ;; GNU Emacs is free software; you can redistribute it and/or modify 15 ;; GNU Emacs is free software; you can redistribute it and/or modify
16 ;; it under the terms of the GNU General Public License as published by 16 ;; it under the terms of the GNU General Public License as published by
76 76
77 ;;;###autoload 77 ;;;###autoload
78 (defcustom type-break-mode nil 78 (defcustom type-break-mode nil
79 "Toggle typing break mode. 79 "Toggle typing break mode.
80 See the docstring for the `type-break-mode' command for more information. 80 See the docstring for the `type-break-mode' command for more information.
81 This variable should be set only with \\[customize], which is equivalent 81 Setting this variable directly does not take effect;
82 to using the function `type-break-mode'." 82 use either \\[customize] or the function `type-break-mode'."
83 :set (lambda (symbol value) 83 :set (lambda (symbol value)
84 (type-break-mode (if value 1 -1))) 84 (type-break-mode (if value 1 -1)))
85 :initialize 'custom-initialize-default 85 :initialize 'custom-initialize-default
86 :type 'boolean 86 :type 'boolean
87 :group 'type-break 87 :group 'type-break