diff options
| -rw-r--r-- | lisp/subr.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/subr.el b/lisp/subr.el index faf9e6c2f13..d2b836a5e4f 100644 --- a/lisp/subr.el +++ b/lisp/subr.el | |||
| @@ -2210,9 +2210,9 @@ from `standard-syntax-table' otherwise." | |||
| 2210 | 2210 | ||
| 2211 | (defun syntax-after (pos) | 2211 | (defun syntax-after (pos) |
| 2212 | "Return the syntax of the char after POS. | 2212 | "Return the syntax of the char after POS. |
| 2213 | The value is either a syntax character (a character that designates | 2213 | The value is either a syntax class character (a character that designates |
| 2214 | a syntax in `modify-syntax-entry'), or a cons cell | 2214 | a syntax in `modify-syntax-entry'), or a cons cell |
| 2215 | of the form (CODE . MATCH), where CODE is the syntax character | 2215 | of the form (CLASS . MATCH), where CLASS is the syntax class character |
| 2216 | and MATCH is the matching parenthesis." | 2216 | and MATCH is the matching parenthesis." |
| 2217 | (unless (or (< pos (point-min)) (>= pos (point-max))) | 2217 | (unless (or (< pos (point-min)) (>= pos (point-max))) |
| 2218 | (let* ((st (if parse-sexp-lookup-properties | 2218 | (let* ((st (if parse-sexp-lookup-properties |