diff options
| author | Stefan Monnier | 2005-10-29 16:05:41 +0000 |
|---|---|---|
| committer | Stefan Monnier | 2005-10-29 16:05:41 +0000 |
| commit | 0e6228bc0b37f297674f8b640077ba3615ea5876 (patch) | |
| tree | 8655aeaccd5b225e18a786fa1d8a6a81474b0034 /src | |
| parent | 0b6f31bf481737bc8e90ce3c7f11d599c42f34ee (diff) | |
| download | emacs-0e6228bc0b37f297674f8b640077ba3615ea5876.tar.gz emacs-0e6228bc0b37f297674f8b640077ba3615ea5876.zip | |
(Fparse_partial_sexp): Fix docstring.
Diffstat (limited to 'src')
| -rw-r--r-- | src/syntax.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/syntax.c b/src/syntax.c index 2043cff63d6..251cc553cdf 100644 --- a/src/syntax.c +++ b/src/syntax.c | |||
| @@ -3020,7 +3020,7 @@ Parsing stops at TO or when certain criteria are met; | |||
| 3020 | point is set to where parsing stops. | 3020 | point is set to where parsing stops. |
| 3021 | If fifth arg OLDSTATE is omitted or nil, | 3021 | If fifth arg OLDSTATE is omitted or nil, |
| 3022 | parsing assumes that FROM is the beginning of a function. | 3022 | parsing assumes that FROM is the beginning of a function. |
| 3023 | Value is a list of ten elements describing final state of parsing: | 3023 | Value is a list of elements describing final state of parsing: |
| 3024 | 0. depth in parens. | 3024 | 0. depth in parens. |
| 3025 | 1. character address of start of innermost containing list; nil if none. | 3025 | 1. character address of start of innermost containing list; nil if none. |
| 3026 | 2. character address of start of last complete sexp terminated. | 3026 | 2. character address of start of last complete sexp terminated. |
| @@ -3039,7 +3039,7 @@ If third arg TARGETDEPTH is non-nil, parsing stops if the depth | |||
| 3039 | in parentheses becomes equal to TARGETDEPTH. | 3039 | in parentheses becomes equal to TARGETDEPTH. |
| 3040 | Fourth arg STOPBEFORE non-nil means stop when come to | 3040 | Fourth arg STOPBEFORE non-nil means stop when come to |
| 3041 | any character that starts a sexp. | 3041 | any character that starts a sexp. |
| 3042 | Fifth arg OLDSTATE is a nine-element list like what this function returns. | 3042 | Fifth arg OLDSTATE is a list like what this function returns. |
| 3043 | It is used to initialize the state of the parse. Elements number 1, 2, 6 | 3043 | It is used to initialize the state of the parse. Elements number 1, 2, 6 |
| 3044 | and 8 are ignored; you can leave off element 8 (the last) entirely. | 3044 | and 8 are ignored; you can leave off element 8 (the last) entirely. |
| 3045 | Sixth arg COMMENTSTOP non-nil means stop at the start of a comment. | 3045 | Sixth arg COMMENTSTOP non-nil means stop at the start of a comment. |