ignore control-l (parallelling change to tokenizer.c)
This commit is contained in:
parent
aaf18390ee
commit
e78c5d0a16
|
@ -212,7 +212,7 @@ tb_displayline(f, filename, lineno, name)
|
|||
}
|
||||
if (i == lineno) {
|
||||
char *p = linebuf;
|
||||
while (*p == ' ' || *p == '\t')
|
||||
while (*p == ' ' || *p == '\t' || *p == '\014')
|
||||
p++;
|
||||
writestring(" ", f);
|
||||
writestring(p, f);
|
||||
|
|
Loading…
Reference in New Issue