aboutsummaryrefslogtreecommitdiffstats
path: root/src/syntax.c
diff options
context:
space:
mode:
authorDave Love2000-06-19 22:22:47 +0000
committerDave Love2000-06-19 22:22:47 +0000
commit943e731c81c574ebbfdcd49cd008d5f92aa23357 (patch)
tree28905d5a6b207ebc3dddf82a7479cec53188ef7c /src/syntax.c
parent11cb8c532d7ed2bbc25a67afb83a61e7b8704078 (diff)
downloademacs-943e731c81c574ebbfdcd49cd008d5f92aa23357.tar.gz
emacs-943e731c81c574ebbfdcd49cd008d5f92aa23357.zip
(Fparse_partial_sexp): Doc fix.
Diffstat (limited to 'src/syntax.c')
-rw-r--r--src/syntax.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/syntax.c b/src/syntax.c
index d2eddafa439..19e18127f0b 100644
--- a/src/syntax.c
+++ b/src/syntax.c
@@ -2784,7 +2784,7 @@ Value is a list of ten elements describing final state of parsing:\n\
2784 else an integer (the current comment nesting).\n\ 2784 else an integer (the current comment nesting).\n\
2785 5. t if following a quote character.\n\ 2785 5. t if following a quote character.\n\
2786 6. the minimum paren-depth encountered during this scan.\n\ 2786 6. the minimum paren-depth encountered during this scan.\n\
2787 7. t if in a comment of style b; `syntax-table' if the comment\n\ 2787 7. t if in a comment of style b; symbol `syntax-table' if the comment\n\
2788 should be terminated by a generic comment delimiter.\n\ 2788 should be terminated by a generic comment delimiter.\n\
2789 8. character address of start of comment or string; nil if not in one.\n\ 2789 8. character address of start of comment or string; nil if not in one.\n\
2790 9. Intermediate data for continuation of parsing (subject to change).\n\ 2790 9. Intermediate data for continuation of parsing (subject to change).\n\
@@ -2796,8 +2796,8 @@ Fifth arg STATE is a nine-element list like what this function returns.\n\
2796 It is used to initialize the state of the parse. Elements number 1, 2, 6\n\ 2796 It is used to initialize the state of the parse. Elements number 1, 2, 6\n\
2797 and 8 are ignored; you can leave off element 8 (the last) entirely.\n\ 2797 and 8 are ignored; you can leave off element 8 (the last) entirely.\n\
2798Sixth arg COMMENTSTOP non-nil means stop at the start of a comment.\n\ 2798Sixth arg COMMENTSTOP non-nil means stop at the start of a comment.\n\
2799 If it is `syntax-table', stop after the start of a comment or a string,\n\ 2799 If it is symbol `syntax-table', stop after the start of a comment or a\n\
2800 or after end of a comment or a string.") 2800 string, or after end of a comment or a string.")
2801 (from, to, targetdepth, stopbefore, state, commentstop) 2801 (from, to, targetdepth, stopbefore, state, commentstop)
2802*/ 2802*/
2803 2803