From 4af5b794015a64f67d878d43ac6cde1bb39b3bd9 Mon Sep 17 00:00:00 2001 From: Mats Lidell Date: Sun, 27 Oct 2024 09:11:16 +0100 Subject: [PATCH] Accept texi2any for version identification * lisp/info.el (Info-file-supports-index-cookies): Accept texi2any for version identification. (Bug#74042) --- lisp/info.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/info.el b/lisp/info.el index 1ad1677c6ce..9025fd13363 100644 --- a/lisp/info.el +++ b/lisp/info.el @@ -667,7 +667,7 @@ in `Info-file-supports-index-cookies-list'." (goto-char (point-min)) (condition-case () (if (and (re-search-forward - "makeinfo[ \n]version[ \n]\\([0-9]+.[0-9]+\\)" + "\\(?:makeinfo\\|texi2any\\)[ \n]version[ \n]\\([0-9]+.[0-9]+\\)" (line-beginning-position 4) t) (not (version< (match-string 1) "4.7"))) (setq found t))