diff options
Diffstat (limited to 'lisp')
| -rw-r--r-- | lisp/emacs-lisp/syntax.el | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/lisp/emacs-lisp/syntax.el b/lisp/emacs-lisp/syntax.el index 9dde325923d..16a76da5188 100644 --- a/lisp/emacs-lisp/syntax.el +++ b/lisp/emacs-lisp/syntax.el | |||
| @@ -510,26 +510,6 @@ run from `point-min' to POS except that values at positions 2 and 6 | |||
| 510 | in the returned list (counting from 0) cannot be relied upon. | 510 | in the returned list (counting from 0) cannot be relied upon. |
| 511 | Point is at POS when this function returns. | 511 | Point is at POS when this function returns. |
| 512 | 512 | ||
| 513 | Value is a list of elements describing final state of parsing: | ||
| 514 | 0. depth in parens. | ||
| 515 | 1. character address of start of innermost containing list; nil if none. | ||
| 516 | 2. character address of start of last complete sexp terminated. | ||
| 517 | 3. non-nil if inside a string. | ||
| 518 | (it is the character that will terminate the string, | ||
| 519 | or t if the string should be terminated by a generic string delimiter.) | ||
| 520 | 4. nil if outside a comment, t if inside a non-nestable comment, | ||
| 521 | else an integer (the current comment nesting). | ||
| 522 | 5. t if following a quote character. | ||
| 523 | 6. the minimum paren-depth encountered during this scan. | ||
| 524 | 7. style of comment, if any. | ||
| 525 | 8. character address of start of comment or string; nil if not in one. | ||
| 526 | 9. List of positions of currently open parens, outermost first. | ||
| 527 | 10. When the last position scanned holds the first character of a | ||
| 528 | (potential) two character construct, the syntax of that position, | ||
| 529 | otherwise nil. That construct can be a two character comment | ||
| 530 | delimiter or an Escaped or Char-quoted character. | ||
| 531 | 11..... Possible further internal information used by ‘parse-partial-sexp’. | ||
| 532 | |||
| 533 | It is necessary to call `syntax-ppss-flush-cache' explicitly if | 513 | It is necessary to call `syntax-ppss-flush-cache' explicitly if |
| 534 | this function is called while `before-change-functions' is | 514 | this function is called while `before-change-functions' is |
| 535 | temporarily let-bound, or if the buffer is modified without | 515 | temporarily let-bound, or if the buffer is modified without |