ignore control-l (parallelling change to tokenizer.c)

This commit is contained in:
Guido van Rossum 1995-07-07 22:45:41 +00:00
parent aaf18390ee
commit e78c5d0a16
1 changed files with 1 additions and 1 deletions

View File

@ -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);