1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-01-07 15:21:46 +00:00

* lisp/textmodes/texinfo.el (texinfo-flymake): Improve docstring.

This commit is contained in:
Stefan Kangas 2022-12-13 18:57:25 +01:00
parent a99d0e7e6c
commit 1d5c35c8e4

View File

@ -347,6 +347,8 @@ Subexpression 1 is what goes into the corresponding `@end' statement.")
(defun texinfo-flymake (report-fn &rest _)
"Texinfo checking for Flymake.
It uses either \"makeinfo\" or \"texi2any\", in that order.
REPORT-FN is the callback function."
(let ((executable (or (executable-find "makeinfo")
(executable-find "texi2any")))