diff options
| -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 | { |