[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: problems with makeinfo's macro expansion
From: |
Karl Berry |
Subject: |
Re: problems with makeinfo's macro expansion |
Date: |
Sun, 11 Jul 2004 17:52:49 -0400 |
. Zero bytes are inserted after some expansions -- it seems that the
recent fix (for groff.texinfo) is not complete yet.
I just checked in this fix, let me know if still broken (or other
problems). I didn't see anything in the groff.texinfo -E output now.
Thanks as usual,
k
--- makeinfo.c.~1.61.~ 2004-07-03 05:48:22.000000000 -0700
+++ makeinfo.c 2004-07-11 14:43:41.000000000 -0700
@@ -960,4 +960,6 @@
if (temp < 0)
{
+ /* not found, move current position to end of string */
+ input_text_offset = input_text_length;
if (strcmp (string, "\n") != 0)
{ /* Give a more descriptive feedback, if we are looking for
address@hidden ''
@@ -970,8 +972,5 @@
COMMAND_PREFIX, command);
else
- {
- line_error (_("Expected `%s'"), string);
- input_text_offset = input_text_length - strlen (string);
- }
+ line_error (_("Expected `%s'"), string);
free (end_block);
return;
@@ -979,7 +978,6 @@
}
else
- input_text_offset = temp;
-
- input_text_offset += strlen (string);
+ /* found, move current position to after the found string */
+ input_text_offset = temp + strlen (string);
}
- Re: problems with makeinfo's macro expansion, (continued)
- Re: problems with makeinfo's macro expansion, Stepan Kasal, 2004/07/12
- Re: problems with makeinfo's macro expansion, Karl Berry, 2004/07/12
- Re: problems with makeinfo's macro expansion, Werner LEMBERG, 2004/07/14
- Re: problems with makeinfo's macro expansion, Werner LEMBERG, 2004/07/25
- Re: problems with makeinfo's macro expansion, Karl Berry, 2004/07/26
- Re: problems with makeinfo's macro expansion, Werner LEMBERG, 2004/07/26
- Re: problems with makeinfo's macro expansion, Stepan Kasal, 2004/07/27
- Re: problems with makeinfo's macro expansion, Karl Berry, 2004/07/12
- Re: problems with makeinfo's macro expansion, Werner LEMBERG, 2004/07/14
- Re: problems with makeinfo's macro expansion, Karl Berry, 2004/07/12
Re: problems with makeinfo's macro expansion,
Karl Berry <=