diff options
author | Juri Linkov <juri@jurta.org> | 2010-04-15 01:41:21 +0300 |
---|---|---|
committer | Juri Linkov <juri@jurta.org> | 2010-04-15 01:41:21 +0300 |
commit | 5854c2677e0a197d8adedfdf3d558b35f874beb7 (patch) | |
tree | 3bbfd1d5f837d1bf2c39cb2baf4ea627a9b7e3f1 /doc/lispref/abbrevs.texi | |
parent | 3808c51fa8259b5d6e4c0966311eab9faa2a03d5 (diff) | |
download | emacs-5854c2677e0a197d8adedfdf3d558b35f874beb7.tar.gz |
Fix @deffn without category.
* abbrevs.texi (Abbrev Expansion): Replace @deffn with @defun
for `abbrev-insert'.
* buffers.texi (Indirect Buffers): Add category `Command'
to @deffn of `clone-indirect-buffer'.
* windows.texi (Cyclic Window Ordering): Replace @deffn with @defun
for `next-window' and `previous-window'. Add category `Command'
to @deffn of `pop-to-buffer'.
Diffstat (limited to 'doc/lispref/abbrevs.texi')
-rw-r--r-- | doc/lispref/abbrevs.texi | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/lispref/abbrevs.texi b/doc/lispref/abbrevs.texi index 5434aa62357..1bb33475240 100644 --- a/doc/lispref/abbrevs.texi +++ b/doc/lispref/abbrevs.texi @@ -281,7 +281,7 @@ function returns @code{nil} as its value, then @code{expand-abbrev} returns @code{nil} even though expansion did occur. @end deffn -@deffn abbrev-insert abbrev &optional name start end +@defun abbrev-insert abbrev &optional name start end This function inserts the abbrev expansion of @code{abbrev}, replacing the text between @code{start} and @code{end}. If @code{start} is omitted, it defaults to point. @code{name}, if non-@code{nil}, should @@ -289,7 +289,7 @@ be the name by which this abbrev was found (a string); it is used to figure out whether to adjust the capitalization of the expansion. The function returns @code{abbrev} if the abbrev was successfully inserted. -@end deffn +@end defun @deffn Command abbrev-prefix-mark &optional arg This command marks the current location of point as the beginning of |