branch: externals/auctex
commit ad81644cf17c80662c4324c3ca0a64ce28ce18ef
Author: Arash Esbati <[email protected]>
Commit: Arash Esbati <[email protected]>
; * tex.el (TeX-brace-count-line): Fix last change.
---
tex.el | 5 +----
1 file changed, 1 insertion(+), 4 deletions(-)
diff --git a/tex.el b/tex.el
index d508a0cb21..a2d6111eb2 100644
--- a/tex.el
+++ b/tex.el
@@ -5510,10 +5510,7 @@ additional characters."
(setq count (- count TeX-brace-indent-level)))
((eq char ?\\)
(when (< (point) limit)
- ;; ?\\ in verbatim constructs doesn't escape
- ;; the next char
- (unless (TeX-verbatim-p)
- (forward-char))
+ (forward-char)
t)))))))
count)))