escaped close parens correctly. (Bug#954)
+2008-09-23 Martin Rudalics <rudalics@gmx.at>
+
+ * textmodes/tex-mode.el (latex-find-indent): Try to handle
+ escaped close parens correctly. (Bug#954)
+
2008-09-22 Tassilo Horn <tassilo@member.fsf.org>
* play/fortune.el (fortune-in-buffer): Fix a bug which forced
(and (looking-at "\\\\\\(begin\\|end\\) *{\\([^\n}]+\\)")
(member (match-string 2) tex-verbatim-environments)
0)
- ;; Put leading close-paren where the matching open brace would be.
- (and (eq (latex-syntax-after) ?\))
+ ;; Put leading close-paren where the matching open paren would be.
+ (and (or (eq (latex-syntax-after) ?\))
+ ;; Try to handle escaped close parens.
+ (and (looking-at "\\\\\\([])}]\\)")
+ (goto-char (match-beginning 1))))
(ignore-errors
(save-excursion
(latex-skip-close-parens)