aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKarl Heuer1999-03-30 21:27:20 +0000
committerKarl Heuer1999-03-30 21:27:20 +0000
commit20021621955b2d9309007563e6cd3e0faa5b3cbc (patch)
treeda6681356535fcce7a8b883400066273011f4923
parent35dfd2ef08d232de36bacd2a36e64e3171b726b4 (diff)
downloademacs-20021621955b2d9309007563e6cd3e0faa5b3cbc.tar.gz
emacs-20021621955b2d9309007563e6cd3e0faa5b3cbc.zip
(abbrev-mode): Doc fix.
-rw-r--r--lisp/abbrev.el3
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/abbrev.el b/lisp/abbrev.el
index ad71ba1423c..ffde49ade63 100644
--- a/lisp/abbrev.el
+++ b/lisp/abbrev.el
@@ -50,7 +50,8 @@ and be replaced by its expansion."
50 "Toggle abbrev mode. 50 "Toggle abbrev mode.
51In abbrev mode, inserting an abbreviation causes it to expand 51In abbrev mode, inserting an abbreviation causes it to expand
52and be replaced by its expansion. 52and be replaced by its expansion.
53You must modify via \\[customize] for this variable to have an effect." 53This variable should be set only with \\[customize], which is equivalent
54to using the function `abbrev-mode'.
54 :set (lambda (symbol value) 55 :set (lambda (symbol value)
55 (abbrev-mode (if value 1 0))) 56 (abbrev-mode (if value 1 0)))
56 :type 'boolean 57 :type 'boolean