branch: externals/auctex commit b36127cc74808690cc042eac73952e3e75493d90 Author: Arash Esbati <ar...@gnu.org> Commit: Arash Esbati <ar...@gnu.org>
* tex.el: Require seq.el for older Emacsen where not preloaded. --- tex.el | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tex.el b/tex.el index 350d9e9003..e6f09d8fb5 100644 --- a/tex.el +++ b/tex.el @@ -36,6 +36,9 @@ (eval-when-compile (require 'cl-lib)) (require 'texmathp) +;; seq.el is preloaded in Emacs 29, so the next form can be removed +;; once 29 is the minimum required Emacs version +(require 'seq) ;; Require dbus at compile time to get macro definition of ;; `dbus-ignore-errors'. (eval-when-compile (require 'dbus))