Re: makeinfo 7.1 misses menu errors

2024-01-19 Thread Eli Zaretskii
> Date: Fri, 19 Jan 2024 16:30:33 -0700 > From: Karl Berry > > Hi Gavin, > > The problem as I remember it was that the error messages are awful: > > No argument, but having any message at all is infinitely better than > silence. I urge you to restore them by default, suboptimal as they are.

Re: makeinfo 7.1 misses menu errors

2024-01-19 Thread Karl Berry
Hi Gavin, The problem as I remember it was that the error messages are awful: No argument, but having any message at all is infinitely better than silence. I urge you to restore them by default, suboptimal as they are. It's true that those msgs as such have never made a great deal of sense t

Re: makeinfo 7.1 misses menu errors

2024-01-19 Thread Gavin Smith
On Thu, Jan 18, 2024 at 04:57:15PM -0700, Karl Berry wrote: > I believe this is an intentional feature in recent Texinfo versions. > To get the warnings back, you need to run makeinfo with the > command-line option "-c CHECK_NORMAL_MENU_STRUCTURE=1". > > Thanks for the hint. I reported

Re: Info: segfault on get-help-window with ‘invalid’ infokey

2024-01-19 Thread Bugsy Abatantuono
On Wednesday, January 17th, 2024 at 7:53 PM, Gavin Smith wrote: > > Thanks for the report; it should be fixed in commit 179b5a55 (2024-01-17). Hi, Gavin, the bug is still hiding in the code: 1. Content of the file ./keys: #info a invalid 2. Run: info --init-file ./keys 3. Type: M-x d

Re: makeinfo does not produce first output file when multiple files passed

2024-01-19 Thread No Wayman
Patrice Dumas writes: The -o options is supposed to be passed once, and it is used for the first input file only. In case there are multiple ones, only the last one is used (this could change in the future). So, in your case, eat.info is used as output file for fdl.texi, then gpl.texi is p

Multiple input/output neglects to produce some files

2024-01-19 Thread Psionic K
The eat package for Emacs contains multiple info files. https://codeberg.org/akib/emacs-eat An issue was found where the eat.info was not being produced. Padding the output arguments with garbage values results in all three files being output correctly: https://github.com/progfolio/elpaca/issues/

Re: makeinfo does not produce first output file when multiple files passed

2024-01-19 Thread Patrice Dumas
On Thu, Jan 18, 2024 at 10:52:17AM -0500, No Wayman wrote: > > $ cd ./emacs-eat > $ makeinfo fdl.texi -o fdl.info gpl.texi -o gpl.info eat.texi -o eat.info > > This results in the last two info files being created (e.g. gpl.info and > eat.info in this example). > The first file is not created reg