Description: maxima-index.lisp: no presupposed char-encoding
 This patch reverses upstream commit 20cfb9d8084 ("In build_index.pl,
 assume info file encoding is always UTF-8.") which hard code the
 char encoding to UTF-8. However gcl knows nothing about char encoding.
 This patch fixes the issue reported in Debian in bugreport #1131495.
Origin: Debian
Forwarded: https://sourceforge.net/p/maxima/bugs/4692/
Author: Jerome Benoit <calculus@rezozer.net>
Last-Update: 2026-04-05

--- a/doc/info/build_index.pl
+++ b/doc/info/build_index.pl
@@ -5,7 +5,7 @@
 require 5.008;
 
 $main_info = $ARGV[0];
-$infofile_encoding = ":utf8";
+$infofile_encoding = ":crlf";
 
 binmode STDOUT, $infofile_encoding;
 
