comparison lisp/abbrev.el @ 24535:2bd202331192

(abbrev-mode): Doc fix.
author Karl Heuer <kwzh@gnu.org>
date Tue, 30 Mar 1999 21:27:20 +0000
parents 8c7fdc02cb78
children d0b40f823255
comparison
equal deleted inserted replaced
24534:ce83f341af6f 24535:2bd202331192
48 48
49 (defcustom abbrev-mode nil 49 (defcustom abbrev-mode nil
50 "Toggle abbrev mode. 50 "Toggle abbrev mode.
51 In abbrev mode, inserting an abbreviation causes it to expand 51 In abbrev mode, inserting an abbreviation causes it to expand
52 and be replaced by its expansion. 52 and be replaced by its expansion.
53 You must modify via \\[customize] for this variable to have an effect." 53 This variable should be set only with \\[customize], which is equivalent
54 to 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
57 :group 'abbrev-mode) 58 :group 'abbrev-mode)
58 59