summaryrefslogtreecommitdiff
path: root/lisp/textmodes
diff options
context:
space:
mode:
authorStefan Monnier <monnier@iro.umontreal.ca>2015-09-03 15:08:57 -0400
committerStefan Monnier <monnier@iro.umontreal.ca>2015-09-03 15:08:57 -0400
commit2d19f8c8b48803059272ac1c9582d8a9dbafe6f7 (patch)
tree84fb80ffcc5d3088e82b77fa0349c191b62cdf25 /lisp/textmodes
parentc37ef7546d22e801f247ee9d4fef1a9d6b21ac1a (diff)
downloademacs-2d19f8c8b48803059272ac1c9582d8a9dbafe6f7.tar.gz
(tex--prettify-symbols-compose-p): Don't compose in verbatim blocks!
* lisp/textmodes/tex-mode.el (tex--prettify-symbols-compose-p): Don't compose inside verbatim blocks!
Diffstat (limited to 'lisp/textmodes')
-rw-r--r--lisp/textmodes/tex-mode.el2
1 files changed, 2 insertions, 0 deletions
diff --git a/lisp/textmodes/tex-mode.el b/lisp/textmodes/tex-mode.el
index 6244189f64a..5fdf9e3b250 100644
--- a/lisp/textmodes/tex-mode.el
+++ b/lisp/textmodes/tex-mode.el
@@ -3410,6 +3410,8 @@ There might be text before point."
(not (or
;; Don't compose \alpha@foo.
(eq after-syntax ?_)
+ ;; Don't compose inside verbatim blocks!
+ (nth 8 (syntax-ppss))
;; The \alpha in \alpha2 may be composed but of course \alphax may not.
(and (eq after-syntax ?w)
(or (< after-char ?0)