Fixed issue with clipped program
This commit is contained in:
parent
f83bb5b2c8
commit
d7f19f5acf
|
@ -178,12 +178,12 @@ parse_rulefrag(char *line)
|
|||
static int
|
||||
parse_line(char *line)
|
||||
{
|
||||
char c;
|
||||
if(line[0] == 0) return 1;
|
||||
if(line[0] == '<' && line[1] == '>')
|
||||
return !!addrule(line);
|
||||
while((*prog_++ = *line++))
|
||||
;
|
||||
*prog_++ = 0xa;
|
||||
while((c = *line++))
|
||||
*prog_++ = c;
|
||||
return 1;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue