On Fri, Jul 18, 2025 at 08:43:21AM -0700, Raymond Toy wrote: > Huh, this is weird. Perhaps I messed up building texinfo 7.2 from sources a > while back? > > Anyway, with your test, I ran it. I get a message that it can't include > src-hl.c. That seems to come from the line > > |@include src-hl.c | > > I changed it to > > |#include src-hl.c | > > Now I get the message:
This is not correct C, it should be #include "src-hl.c" or #include <src-hl.c>, if you actually want to use the #include directive to the C preprocessor. I did it with @include because I thought you might have had code snippets in separate files. I'll give it a try to see if I can reproduce the problem.