comparison lisp/abbrev.el @ 1233:e795fe80b14e

Doc fix.
author Christopher Zaborsky <rogue@erratum.com>
date Sun, 27 Sep 1992 17:22:08 +0000
parents 52a05f4884a4
children b825fe93c826
comparison
equal deleted inserted replaced
1232:2c56a159c9b6 1233:e795fe80b14e
24 *t means user plans to use global abbrevs only. 24 *t means user plans to use global abbrevs only.
25 Makes the commands to define mode-specific abbrevs define global ones instead.") 25 Makes the commands to define mode-specific abbrevs define global ones instead.")
26 26
27 (defun abbrev-mode (arg) 27 (defun abbrev-mode (arg)
28 "Toggle abbrev mode. 28 "Toggle abbrev mode.
29 With arg, turn abbrev mode on iff arg is positive. 29 With ARG, turn abbrev mode on iff ARG is positive.
30 In abbrev mode, inserting an abbreviation causes it to expand 30 In abbrev mode, inserting an abbreviation causes it to expand
31 and be replaced by its expansion." 31 and be replaced by its expansion."
32 (interactive "P") 32 (interactive "P")
33 (setq abbrev-mode 33 (setq abbrev-mode
34 (if (null arg) (not abbrev-mode) 34 (if (null arg) (not abbrev-mode)