Fixed issue with clipped program

This commit is contained in:
Devine Lu Linvega 2024-04-05 13:46:38 -07:00
parent f83bb5b2c8
commit d7f19f5acf
1 changed files with 3 additions and 3 deletions

View File

@ -178,12 +178,12 @@ parse_rulefrag(char *line)
static int static int
parse_line(char *line) parse_line(char *line)
{ {
char c;
if(line[0] == 0) return 1; if(line[0] == 0) return 1;
if(line[0] == '<' && line[1] == '>') if(line[0] == '<' && line[1] == '>')
return !!addrule(line); return !!addrule(line);
while((*prog_++ = *line++)) while((c = *line++))
; *prog_++ = c;
*prog_++ = 0xa;
return 1; return 1;
} }