* read.c (s_space): Multiply repeat count by mult, not fill.
This commit is contained in:
parent
83386662e9
commit
bf44929331
2 changed files with 5 additions and 1 deletions
|
@ -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)
|
Thu Mar 4 05:20:42 1993 Ken Raeburn (raeburn@cygnus.com)
|
||||||
|
|
||||||
* read.c: Include ctype.h.
|
* read.c: Include ctype.h.
|
||||||
|
|
|
@ -1265,7 +1265,7 @@ s_space (mult)
|
||||||
}
|
}
|
||||||
if (mult)
|
if (mult)
|
||||||
{
|
{
|
||||||
temp_fill *= mult;
|
temp_repeat *= mult;
|
||||||
}
|
}
|
||||||
if (temp_repeat <= 0)
|
if (temp_repeat <= 0)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue