Commit 6bed8d25 authored by Guido van Rossum's avatar Guido van Rossum

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

parent 434941a8
......@@ -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);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment