From: Guido van Rossum Date: Fri, 7 Jul 1995 22:45:41 +0000 (+0000) Subject: ignore control-l (parallelling change to tokenizer.c) X-Git-Tag: v1.3b1~210 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=e78c5d0a16aaa212d7ba0729ab46de3b3035d57e;p=thirdparty%2FPython%2Fcpython.git ignore control-l (parallelling change to tokenizer.c) --- diff --git a/Python/traceback.c b/Python/traceback.c index bea0b19b57e7..1ab880a91e27 100644 --- a/Python/traceback.c +++ b/Python/traceback.c @@ -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);