Re: [Gawk manual] HTML issues

2024-10-13 Thread arnold
Hello. Please send any further HTML issues directly to the Texinfo people (cc'ed). I simply use the currently released version of makeinfo to format the documents. Your patch, unfortunately, is not correct, as it ends up putting regular text into @code even for non-HTML outputs, so I cannot appl

Re: -Wtype-limits warning in info/infokey.c

2024-10-13 Thread Gavin Smith
On Thu, Oct 10, 2024 at 06:27:20PM +0200, Andreas Schwab wrote: > On Okt 10 2024, Eli Zaretskii wrote: > > > I think we should declare 'oval' as 'int' instead. > > The octal case also needs a better range check, so that \777 is not > parsed as 511. Thanks for the report, should be done in commit

Re: FreeBSD failures with env for in document translations for master

2024-10-13 Thread Patrice Dumas
On Sun, Oct 13, 2024 at 03:30:14PM +0100, Gavin Smith wrote: > We have had memory errors with setenv in XS code before. Might indeed be related, though the issues were much less severe who knows what could happen on other platforms. > I wrote on November 16, 2023 (private mail): > > > I found th

Re: FreeBSD failures with env for in document translations for master

2024-10-13 Thread Gavin Smith
On Sat, Sep 21, 2024 at 11:17:49PM +0200, Patrice Dumas wrote: > Hello, > > The CI for the master branch for FreeBSD shows errors related to in > document translations in the XS/C code. These errors seem to trigger > some kind of memory corruption, with an errno code that is not supposed > to be

Re: removing the HTML Xref Mismatch node

2024-10-13 Thread Gavin Smith
On Tue, Oct 01, 2024 at 08:52:18PM +0100, Gavin Smith wrote: > On Mon, Sep 30, 2024 at 09:25:25PM +0100, Gavin Smith wrote: > > This needs more explanation: we certainly do not want to say that > > links generated in HTML output are always to "localhost". > > I saw this was already discussed: > >

Re: MATHJAX_CONFIGURATION should only have extra configuration

2024-10-13 Thread Gavin Smith
On Sun, Oct 13, 2024 at 03:01:58PM +0200, Patrice Dumas wrote: > On Sat, Oct 12, 2024 at 10:36:09PM +0100, Gavin Smith wrote: > > > > I don't like the requirement for the user to replicate everything in > > MATHJAX_CONFIGURATION. I think they should just be able to specify > > settings they want

Re: tightening mathjax tex options

2024-10-13 Thread Patrice Dumas
On Sun, Oct 13, 2024 at 01:57:24PM +0100, Gavin Smith wrote: > On Tue, Sep 10, 2024 at 09:10:27AM +0200, Patrice Dumas wrote: > > On Fri, Sep 06, 2024 at 12:28:48PM +0200, Patrice Dumas wrote: > > > Hello, > > > > > > I propose to set the following in mathjax defaults, to avoid possible > > > inte

Re: MATHJAX_CONFIGURATION should only have extra configuration

2024-10-13 Thread Patrice Dumas
On Sat, Oct 12, 2024 at 10:36:09PM +0100, Gavin Smith wrote: > > I don't like the requirement for the user to replicate everything in > MATHJAX_CONFIGURATION. I think they should just be able to specify > settings they want to override or add. Here's sample code for : > > Here is a patch to the

Re: [Gawk manual] Several empty list items in the HTML version

2024-10-13 Thread Gavin Smith
On Wed, Oct 09, 2024 at 07:48:14PM +0200, Patrice Dumas wrote: > On Tue, Oct 08, 2024 at 09:11:00PM +0100, Gavin Smith wrote: > > > > I've committed the change. > > > > One command that removes all untracked header files is: > > > > git status -u | grep '\.h$' | xargs rm > > This is somewhat da

Re: tightening mathjax tex options

2024-10-13 Thread Gavin Smith
On Tue, Sep 10, 2024 at 09:10:27AM +0200, Patrice Dumas wrote: > On Fri, Sep 06, 2024 at 12:28:48PM +0200, Patrice Dumas wrote: > > Hello, > > > > I propose to set the following in mathjax defaults, to avoid possible > > interactions with text (although it may not be possible anyway because > > of

Re: add missing initializers?

2024-10-13 Thread Gavin Smith
On Thu, Oct 10, 2024 at 04:54:36PM +0100, Gavin Smith wrote: > On Thu, Oct 10, 2024 at 09:00:32AM +0200, Patrice Dumas wrote: > > Hello, > > > > There are warnings with -Wmissing-field-initializers for info/variables.c > > VARIABLE_ALIST info_variables where the where_set field is never > > explic

Re: hard to understand code for the representation of tab

2024-10-13 Thread Patrice Dumas
On Sat, Oct 12, 2024 at 08:51:08PM +0100, Gavin Smith wrote: > Here's an attempt at explaining it: > > pl_chars is the current column. We want to find the next multiple of 8 > after the current column, assuming a tab is 8 spaces. We add 8 to the > current column, and then subtract the remainder