comparison lisp/abbrev.el @ 1329:b825fe93c826

Doc fix.
author Richard M. Stallman <rms@gnu.org>
date Sat, 03 Oct 1992 17:56:40 +0000
parents e795fe80b14e
children 2c7997f249eb
comparison
equal deleted inserted replaced
1328:c4eb3aa71303 1329:b825fe93c826
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 argument 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)