diff options
author | Lars Magne Ingebrigtsen <larsi@gnus.org> | 2011-07-15 15:55:00 +0200 |
---|---|---|
committer | Lars Magne Ingebrigtsen <larsi@gnus.org> | 2011-07-15 15:55:00 +0200 |
commit | 1b5eaeb36cb630692e7a9c523f49ad7e9c9e2263 (patch) | |
tree | 1e8e92fc9a067b17f85ec2839c0dbc067e531ca5 /lisp/emacs-lisp/syntax.el | |
parent | 4bf0979f4c5b87f53a1da435569ba5646e1d93e5 (diff) | |
download | emacs-1b5eaeb36cb630692e7a9c523f49ad7e9c9e2263.tar.gz |
Minor grammer fixes for syntax.el.
Fixes: debbugs:8690
Diffstat (limited to 'lisp/emacs-lisp/syntax.el')
-rw-r--r-- | lisp/emacs-lisp/syntax.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/emacs-lisp/syntax.el b/lisp/emacs-lisp/syntax.el index 200b3a6389b..c65cbc39eab 100644 --- a/lisp/emacs-lisp/syntax.el +++ b/lisp/emacs-lisp/syntax.el @@ -100,7 +100,7 @@ Put first the functions more likely to cause a change and cheaper to compute.") (cons beg end)) (defvar syntax-propertize--done -1 - "Position upto which syntax-table properties have been set.") + "Position up to which syntax-table properties have been set.") (make-variable-buffer-local 'syntax-propertize--done) (defun syntax-propertize--shift-groups (re n) @@ -283,7 +283,7 @@ The return value is a function suitable for `syntax-propertize-function'." (setq keywords font-lock-syntactic-keywords)))))) (defun syntax-propertize (pos) - "Ensure that syntax-table properties are set upto POS." + "Ensure that syntax-table properties are set until POS." (when (and syntax-propertize-function (< syntax-propertize--done pos)) ;; (message "Needs to syntax-propertize from %s to %s" |