diff options
| author | Richard M. Stallman | 1999-05-18 04:47:26 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1999-05-18 04:47:26 +0000 |
| commit | ea02eb562d42debd202ce73fec292d4a8663a36f (patch) | |
| tree | 741ea476e595cc6d07e695b382c51085cf14cbb9 | |
| parent | bf90c2c0ad6cfe83c79dadb90033dd812d49ccec (diff) | |
| download | emacs-ea02eb562d42debd202ce73fec292d4a8663a36f.tar.gz emacs-ea02eb562d42debd202ce73fec292d4a8663a36f.zip | |
(Fdefine_abbrev): Doc fix.
| -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\ | |||
| 111 | If HOOK is non-nil, it should be a function of no arguments;\n\ | 111 | If HOOK is non-nil, it should be a function of no arguments;\n\ |
| 112 | it is called after EXPANSION is inserted.\n\ | 112 | it is called after EXPANSION is inserted.\n\ |
| 113 | If EXPANSION is not a string, the abbrev is a special one,\n\ | 113 | If EXPANSION is not a string, the abbrev is a special one,\n\ |
| 114 | which does not expand in the usual way but only runs HOOK.") | 114 | which does not expand in the usual way but only runs HOOK.\n\ |
| 115 | COUNT, if specified, initializes the abbrev's usage-count\n\ | ||
| 116 | which is incremented each time the abbrev is used.") | ||
| 115 | (table, name, expansion, hook, count) | 117 | (table, name, expansion, hook, count) |
| 116 | Lisp_Object table, name, expansion, hook, count; | 118 | Lisp_Object table, name, expansion, hook, count; |
| 117 | { | 119 | { |