aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/abbrev.c4
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\
111If HOOK is non-nil, it should be a function of no arguments;\n\ 111If HOOK is non-nil, it should be a function of no arguments;\n\
112it is called after EXPANSION is inserted.\n\ 112it is called after EXPANSION is inserted.\n\
113If EXPANSION is not a string, the abbrev is a special one,\n\ 113If 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\
115COUNT, if specified, initializes the abbrev's usage-count\n\
116which 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{