diff options
author | Roi Martin <jroi.martin@gmail.com> | 2025-04-19 13:50:52 +0200 |
---|---|---|
committer | Andrea Corallo <acorallo@gnu.org> | 2025-04-25 22:36:06 +0200 |
commit | 3098d34bfd13c4f06d90ee002fe00ca0de1b46cc (patch) | |
tree | 893e8086e6ab5d99437b10894bd7f468852d65f8 | |
parent | 48940a5d485649bfd6840ddaaf91c17fbe90dbc0 (diff) | |
download | emacs-3098d34bfd13c4f06d90ee002fe00ca0de1b46cc.tar.gz |
* Fix missing lexical-binding cookie warning on async compilation (bug#77918)
* lisp/emacs-lisp/comp-run.el (comp--run-async-workers): Fix missing
lexical-binding cookie warning on async compilation.
-rw-r--r-- | lisp/emacs-lisp/comp-run.el | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lisp/emacs-lisp/comp-run.el b/lisp/emacs-lisp/comp-run.el index 061f176..e0e00d8 100644 --- a/lisp/emacs-lisp/comp-run.el +++ b/lisp/emacs-lisp/comp-run.el @@ -282,6 +282,7 @@ display a message." (mapcar #'prin1-to-string expr))) (_ (progn (with-temp-file temp-file + (insert ";;; -*- lexical-binding: t -*-\n") (mapc #'insert expr-strings)) (comp-log "\n") (mapc #'comp-log expr-strings))) |