aboutsummaryrefslogtreecommitdiffstats
path: root/src/syntax.c
diff options
context:
space:
mode:
authorDave Love2002-10-30 19:17:31 +0000
committerDave Love2002-10-30 19:17:31 +0000
commitee648c11883d30b5aa07db11e67fcaf6c762b34b (patch)
tree90acce6a9e7ab10c24612c0ecc326b773ea1315c /src/syntax.c
parente62cab61d5aa119757a7f9eb2421e58ec3cd9593 (diff)
downloademacs-ee648c11883d30b5aa07db11e67fcaf6c762b34b.tar.gz
emacs-ee648c11883d30b5aa07db11e67fcaf6c762b34b.zip
(Fforward_comment): Doc fix.
Diffstat (limited to 'src/syntax.c')
-rw-r--r--src/syntax.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/syntax.c b/src/syntax.c
index f7b45cd6acc..942e2da3c1b 100644
--- a/src/syntax.c
+++ b/src/syntax.c
@@ -1772,10 +1772,11 @@ forw_comment (from, from_byte, stop, nesting, style, prev_syntax,
1772} 1772}
1773 1773
1774DEFUN ("forward-comment", Fforward_comment, Sforward_comment, 1, 1, 0, 1774DEFUN ("forward-comment", Fforward_comment, Sforward_comment, 1, 1, 0,
1775 doc: /* Move forward across up to N comments. If N is negative, move backward. 1775 doc: /*
1776Move forward across up to COUNT comments. If COUNT is negative, move backward.
1776Stop scanning if we find something other than a comment or whitespace. 1777Stop scanning if we find something other than a comment or whitespace.
1777Set point to where scanning stops. 1778Set point to where scanning stops.
1778If N comments are found as expected, with nothing except whitespace 1779If COUNT comments are found as expected, with nothing except whitespace
1779between them, return t; otherwise return nil. */) 1780between them, return t; otherwise return nil. */)
1780 (count) 1781 (count)
1781 Lisp_Object count; 1782 Lisp_Object count;