From a6dd36e9b1cf7cabb7848c4fa557015762ce0d6c Mon Sep 17 00:00:00 2001 From: Eli Zaretskii Date: Tue, 2 Sep 2025 14:05:14 +0300 Subject: [PATCH] ; Fix last change * lisp/progmodes/elisp-mode.el (elisp-flymake-byte-compile-executable): Doc fix. --- lisp/progmodes/elisp-mode.el | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/lisp/progmodes/elisp-mode.el b/lisp/progmodes/elisp-mode.el index a22b2145f52..89b73eff552 100644 --- a/lisp/progmodes/elisp-mode.el +++ b/lisp/progmodes/elisp-mode.el @@ -2285,12 +2285,13 @@ directory of the buffer being compiled, and nothing else.") "The Emacs executable to use for Flymake byte compilation. If non-nil, this should be an absolute or relative file name of an Emacs -executable. If it's a relative file name, it should be relative to the -root directory of the project containing the file being compiled, as -determined by `project-current'. +executable to use for byte compilation by Flymake. If it's a relative +file name, it should be relative to the root directory of the project +containing the file being compiled, as determined by `project-current'. -If nil, or the file named by this does not exist, the running Emacs is -used via variable `invocation-directory'." +If nil, or if the file named by this does not exist, Flymake will +use the same executable as the running Emacs, as specified by the +variables `invocation-name' and `invocation-directory'." :type 'file :group 'lisp :version "31.1")