aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/subr.el4
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.
2213The value is either a syntax character (a character that designates 2213The value is either a syntax class character (a character that designates
2214a syntax in `modify-syntax-entry'), or a cons cell 2214a syntax in `modify-syntax-entry'), or a cons cell
2215of the form (CODE . MATCH), where CODE is the syntax character 2215of the form (CLASS . MATCH), where CLASS is the syntax class character
2216and MATCH is the matching parenthesis." 2216and 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