diff options
author | Richard M. Stallman <rms@gnu.org> | 1999-05-18 04:47:26 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1999-05-18 04:47:26 +0000 |
commit | ea02eb562d42debd202ce73fec292d4a8663a36f (patch) | |
tree | 741ea476e595cc6d07e695b382c51085cf14cbb9 /src/abbrev.c | |
parent | bf90c2c0ad6cfe83c79dadb90033dd812d49ccec (diff) | |
download | emacs-ea02eb562d42debd202ce73fec292d4a8663a36f.tar.gz |
(Fdefine_abbrev): Doc fix.
Diffstat (limited to 'src/abbrev.c')
-rw-r--r-- | src/abbrev.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/abbrev.c b/src/abbrev.c index 567aa3ca5f4..f8352ad3660 100644 --- a/src/abbrev.c +++ b/src/abbrev.c @@ -111,7 +111,9 @@ To undefine an abbrev, define it with EXPANSION = nil.\n\ If HOOK is non-nil, it should be a function of no arguments;\n\ it is called after EXPANSION is inserted.\n\ If EXPANSION is not a string, the abbrev is a special one,\n\ - which does not expand in the usual way but only runs HOOK.") + which does not expand in the usual way but only runs HOOK.\n\ +COUNT, if specified, initializes the abbrev's usage-count\n\ +which is incremented each time the abbrev is used.") (table, name, expansion, hook, count) Lisp_Object table, name, expansion, hook, count; { |