diff options
| author | Richard M. Stallman | 2001-11-29 00:50:17 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 2001-11-29 00:50:17 +0000 |
| commit | 37778b63182de25bac537a922ac163a53aaa7677 (patch) | |
| tree | 58d6512352f8ba4650050905c049d827d4f11bae | |
| parent | bf5367b9c5c6bece7e66812fb53192cb376837cb (diff) | |
| download | emacs-37778b63182de25bac537a922ac163a53aaa7677.tar.gz emacs-37778b63182de25bac537a922ac163a53aaa7677.zip | |
Another change in forward-comment.
| -rw-r--r-- | lispref/syntax.texi | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/lispref/syntax.texi b/lispref/syntax.texi index 1135ff14d34..731956407eb 100644 --- a/lispref/syntax.texi +++ b/lispref/syntax.texi | |||
| @@ -771,12 +771,13 @@ one comment or several comments. | |||
| 771 | @defun forward-comment count | 771 | @defun forward-comment count |
| 772 | This function moves point forward across @var{count} complete comments | 772 | This function moves point forward across @var{count} complete comments |
| 773 | (that is, including the starting delimiter and the terminating | 773 | (that is, including the starting delimiter and the terminating |
| 774 | delimiter if any). It moves backward if @var{count} is negative. If | 774 | delimiter if any), plus any whitespace encountered on the way. It |
| 775 | it encounters anything other than a comment or whitespace, it stops, | 775 | moves backward if @var{count} is negative. If it encounters anything |
| 776 | leaving point at the place where it stopped. This includes (for | 776 | other than a comment or whitespace, it stops, leaving point at the |
| 777 | instance) finding the end of a comment when moving forward and | 777 | place where it stopped. This includes (for instance) finding the end |
| 778 | expecting the beginning of one. The function also stops immediately | 778 | of a comment when moving forward and expecting the beginning of one. |
| 779 | after moving over the specified number of complete comments. | 779 | The function also stops immediately after moving over the specified |
| 780 | number of complete comments. | ||
| 780 | 781 | ||
| 781 | This function cannot tell whether the ``comments'' it traverses are | 782 | This function cannot tell whether the ``comments'' it traverses are |
| 782 | embedded within a string. If they look like comments, it treats them | 783 | embedded within a string. If they look like comments, it treats them |