diff options
| author | Richard M. Stallman | 2004-11-08 16:55:56 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 2004-11-08 16:55:56 +0000 |
| commit | 7e1963161dc19faa39e449ec2e38679056af4dcc (patch) | |
| tree | b71bab3b49204a46d94433f4b39211dbd3176e1b /lisp | |
| parent | 91c311a94cd18ca830d6328d0419a43a39c459a7 (diff) | |
| download | emacs-7e1963161dc19faa39e449ec2e38679056af4dcc.tar.gz emacs-7e1963161dc19faa39e449ec2e38679056af4dcc.zip | |
(syntax-after): Doc fix.
Diffstat (limited to 'lisp')
| -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 |