* read.c (s_space): Multiply repeat count by mult, not fill.

This commit is contained in:
Steve Chamberlain 1993-03-04 19:55:59 +00:00
parent 83386662e9
commit bf44929331
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
Thu Mar 4 11:52:23 1993 Steve Chamberlain (sac@thepub.cygnus.com)
* read.c (s_space): Multiply repeat count by mult, not fill.
Thu Mar 4 05:20:42 1993 Ken Raeburn (raeburn@cygnus.com)
* read.c: Include ctype.h.

View File

@ -1265,7 +1265,7 @@ s_space (mult)
}
if (mult)
{
temp_fill *= mult;
temp_repeat *= mult;
}
if (temp_repeat <= 0)
{