diff options
| author | Dave Love | 2002-10-30 19:17:31 +0000 |
|---|---|---|
| committer | Dave Love | 2002-10-30 19:17:31 +0000 |
| commit | ee648c11883d30b5aa07db11e67fcaf6c762b34b (patch) | |
| tree | 90acce6a9e7ab10c24612c0ecc326b773ea1315c /src/syntax.c | |
| parent | e62cab61d5aa119757a7f9eb2421e58ec3cd9593 (diff) | |
| download | emacs-ee648c11883d30b5aa07db11e67fcaf6c762b34b.tar.gz emacs-ee648c11883d30b5aa07db11e67fcaf6c762b34b.zip | |
(Fforward_comment): Doc fix.
Diffstat (limited to 'src/syntax.c')
| -rw-r--r-- | src/syntax.c | 5 |
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 | ||
| 1774 | DEFUN ("forward-comment", Fforward_comment, Sforward_comment, 1, 1, 0, | 1774 | DEFUN ("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: /* |
| 1776 | Move forward across up to COUNT comments. If COUNT is negative, move backward. | ||
| 1776 | Stop scanning if we find something other than a comment or whitespace. | 1777 | Stop scanning if we find something other than a comment or whitespace. |
| 1777 | Set point to where scanning stops. | 1778 | Set point to where scanning stops. |
| 1778 | If N comments are found as expected, with nothing except whitespace | 1779 | If COUNT comments are found as expected, with nothing except whitespace |
| 1779 | between them, return t; otherwise return nil. */) | 1780 | between them, return t; otherwise return nil. */) |
| 1780 | (count) | 1781 | (count) |
| 1781 | Lisp_Object count; | 1782 | Lisp_Object count; |