aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKarl Heuer1999-03-30 21:30:05 +0000
committerKarl Heuer1999-03-30 21:30:05 +0000
commit511a07194fae3e4e8c7785ecacd4248ccf710708 (patch)
tree18f62b7de2ee9a880c170e9a1507f4657292ca32
parent14cace6c231dbe8bd80f9cd1bd1e289bbaa14ffe (diff)
downloademacs-511a07194fae3e4e8c7785ecacd4248ccf710708.tar.gz
emacs-511a07194fae3e4e8c7785ecacd4248ccf710708.zip
(type-break-mode): Doc fix.
-rw-r--r--lisp/type-break.el7
1 files changed, 4 insertions, 3 deletions
diff --git a/lisp/type-break.el b/lisp/type-break.el
index 099b32c7d37..2dee5c40680 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.18 1998/09/11 01:38:30 friedman Exp $ 11;; $Id: type-break.el,v 1.19 1998/09/11 01:39:41 friedman Exp kwzh $
12 12
13;; This file is part of GNU Emacs. 13;; This file is part of GNU Emacs.
14 14
@@ -76,9 +76,10 @@
76 76
77;;;###autoload 77;;;###autoload
78(defcustom type-break-mode nil 78(defcustom type-break-mode nil
79 "*Non-nil means typing break mode is enabled. 79 "Toggle typing break mode.
80See the docstring for the `type-break-mode' command for more information. 80See the docstring for the `type-break-mode' command for more information.
81You must modify via \\[customize] for this variable to have an effect." 81This variable should be set only with \\[customize], which is equivalent
82to using the function `type-break-mode'.
82 :set (lambda (symbol value) 83 :set (lambda (symbol value)
83 (type-break-mode (if value 1 -1))) 84 (type-break-mode (if value 1 -1)))
84 :initialize 'custom-initialize-default 85 :initialize 'custom-initialize-default