aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
authorRichard M. Stallman2004-11-08 16:55:56 +0000
committerRichard M. Stallman2004-11-08 16:55:56 +0000
commit7e1963161dc19faa39e449ec2e38679056af4dcc (patch)
treeb71bab3b49204a46d94433f4b39211dbd3176e1b /lisp
parent91c311a94cd18ca830d6328d0419a43a39c459a7 (diff)
downloademacs-7e1963161dc19faa39e449ec2e38679056af4dcc.tar.gz
emacs-7e1963161dc19faa39e449ec2e38679056af4dcc.zip
(syntax-after): Doc fix.
Diffstat (limited to 'lisp')
-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