Bug fixes and automake changes.

This commit is contained in:
Paul Smith
1997-08-18 18:11:04 +00:00
parent e746a9c951
commit 63dff1e0bc
30 changed files with 628 additions and 443 deletions

View File

@@ -1049,8 +1049,15 @@ expand_function (o, function, text, end)
text = expand_argument (text, end);
p2 = text;
while ((p = find_next_token (&p2, &i)) != 0)
while (*p2 != '\0')
{
while (isspace(*p2))
++p2;
p = p2;
for (i=0; *p2 != '\0' && !isspace(*p2); ++p2, ++i)
{}
if (!i)
break;
o = variable_buffer_output (o, p, i);
o = variable_buffer_output (o, " ", 1);
doneany = 1;