1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-11-27 07:37:33 +00:00

(tex-validate-region): Obey syntax-table text properties.

This commit is contained in:
Stefan Monnier 2004-12-03 22:22:24 +00:00
parent d8f96db8da
commit 35dccc6287

View File

@ -1190,14 +1190,14 @@ area if a mismatch is found."
(forward-sexp 1))
;; Now check that like matches like.
(goto-char start)
(while (progn (skip-syntax-forward "^(")
(not (eobp)))
(let ((match (matching-paren (following-char))))
(save-excursion
(while (re-search-forward "\\s(" nil t)
(save-excursion
(let ((pos (match-beginning 0)))
(goto-char pos)
(forward-sexp 1)
(or (= (preceding-char) match)
(error "Mismatched parentheses"))))
(forward-char 1)))
(or (eq (preceding-char) (cdr (syntax-after pos)))
(eq (char-after pos) (cdr (syntax-after (1- (point)))))
(error "Mismatched parentheses"))))))
(error
(skip-syntax-forward " .>")
(setq failure-point (point)))))