branch: master
commit 774974185a1a49db4ff0d48121c33b77e0546a04
Author: Ikumi Keita <[email protected]>
Commit: Ikumi Keita <[email protected]>
Fix compilation on Emacs 27
* tex.el (require): Require subr-x for `if-let' introduced in
`TeX-master-output-file'.
---
tex.el | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/tex.el b/tex.el
index e13c02ce..749037b5 100644
--- a/tex.el
+++ b/tex.el
@@ -34,7 +34,8 @@
(require 'custom)
(require 'tex-site)
(eval-when-compile
- (require 'cl-lib))
+ (require 'cl-lib)
+ (require 'subr-x))
(require 'texmathp)
;; seq.el is preloaded in Emacs 29, so the next form can be removed
;; once 29 is the minimum required Emacs version