aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman2003-10-13 19:28:44 +0000
committerRichard M. Stallman2003-10-13 19:28:44 +0000
commit075ec3c4c78dbc8d792bef6d2526cda82a0aa9d7 (patch)
treeb69aff18d8b7a82c289fe9cb9de4d918971d4f1e
parentd398b86c221a79164ec9c82483fbd19b0ae446cb (diff)
downloademacs-075ec3c4c78dbc8d792bef6d2526cda82a0aa9d7.tar.gz
emacs-075ec3c4c78dbc8d792bef6d2526cda82a0aa9d7.zip
(Parsing Expressions): Clean up forward-comment
and parse-sexp-lookup-properties.
-rw-r--r--lispref/syntax.texi6
1 files changed, 3 insertions, 3 deletions
diff --git a/lispref/syntax.texi b/lispref/syntax.texi
index 217e0ccbd67..7bf67d1f257 100644
--- a/lispref/syntax.texi
+++ b/lispref/syntax.texi
@@ -771,7 +771,7 @@ end of a comment. This limitation no longer exists.
771 771
772@vindex parse-sexp-lookup-properties 772@vindex parse-sexp-lookup-properties
773The behaviour of @code{parse-partial-sexp} is also affected by 773The behaviour of @code{parse-partial-sexp} is also affected by
774@code{parse-sexp-lookup-properties} @xref{Syntax Properties}. 774@code{parse-sexp-lookup-properties} (@pxref{Syntax Properties}).
775 775
776You can use @code{forward-comment} to move forward or backward over 776You can use @code{forward-comment} to move forward or backward over
777one comment or several comments. 777one comment or several comments.
@@ -786,8 +786,8 @@ place where it stopped. This includes (for instance) finding the end
786of a comment when moving forward and expecting the beginning of one. 786of a comment when moving forward and expecting the beginning of one.
787The function also stops immediately after moving over the specified 787The function also stops immediately after moving over the specified
788number of complete comments. If @var{count} comments are found as 788number of complete comments. If @var{count} comments are found as
789expected, with nothing except whitespace between them, return 789expected, with nothing except whitespace between them, it returns
790@code{t}; otherwise return @code{nil}. 790@code{t}; otherwise it returns @code{nil}.
791 791
792This function cannot tell whether the ``comments'' it traverses are 792This function cannot tell whether the ``comments'' it traverses are
793embedded within a string. If they look like comments, it treats them 793embedded within a string. If they look like comments, it treats them