aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman1999-05-18 04:47:26 +0000
committerRichard M. Stallman1999-05-18 04:47:26 +0000
commitea02eb562d42debd202ce73fec292d4a8663a36f (patch)
tree741ea476e595cc6d07e695b382c51085cf14cbb9
parentbf90c2c0ad6cfe83c79dadb90033dd812d49ccec (diff)
downloademacs-ea02eb562d42debd202ce73fec292d4a8663a36f.tar.gz
emacs-ea02eb562d42debd202ce73fec292d4a8663a36f.zip
(Fdefine_abbrev): Doc fix.
-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{