Thanks.  That confirms that the problem is due to cc generating
more location markers, than guile snarfer is able to handle.
Here's a work around that should help.  Please cd to the subdirectory
gint and apply the following patch:

diff --git a/clexer.l b/clexer.l
index 6201d12..c6b97d5 100644
--- a/clexer.l
+++ b/clexer.l
@@ -90,7 +90,7 @@ WS [ \t\v\f]
 %%
 \/\*(\n|[^*]|\*[^/])*\*\/   { advance_line (yytext);
                               outtok ("comment", yytext); }
-#.*\n                       { outstr ("hash"); line_no++; }
+#.*\n                       { line_no++; }
 \n                          { outstr ("eol"); line_no++; }
 {WS}+                       ;
 \\                          ;

Then remove libmu_scm/guile-procedures.texi and run make again.  Let me
know if it helps (and please, keep Cc).

Regards,
Sergey

_______________________________________________
Bug-mailutils mailing list
[email protected]
https://lists.gnu.org/mailman/listinfo/bug-mailutils

Reply via email to