diff options
| -rw-r--r-- | lisp/textmodes/tex-mode.el | 2 |
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." | |||
| 3410 | (not (or | 3410 | (not (or |
| 3411 | ;; Don't compose \alpha@foo. | 3411 | ;; Don't compose \alpha@foo. |
| 3412 | (eq after-syntax ?_) | 3412 | (eq after-syntax ?_) |
| 3413 | ;; Don't compose inside verbatim blocks! | ||
| 3414 | (nth 8 (syntax-ppss)) | ||
| 3413 | ;; The \alpha in \alpha2 may be composed but of course \alphax may not. | 3415 | ;; The \alpha in \alpha2 may be composed but of course \alphax may not. |
| 3414 | (and (eq after-syntax ?w) | 3416 | (and (eq after-syntax ?w) |
| 3415 | (or (< after-char ?0) | 3417 | (or (< after-char ?0) |