From: Walter Dörwald Date: Thu, 25 May 2006 08:53:28 +0000 (+0000) Subject: Replace tab inside comment with space. X-Git-Tag: v2.5b1~547 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=c611f17418ae99a3d39819f3864f3212cf3bcc61;p=python Replace tab inside comment with space. --- diff --git a/Python/errors.c b/Python/errors.c index baf52ff1b9..e0ce833f45 100644 --- a/Python/errors.c +++ b/Python/errors.c @@ -785,7 +785,7 @@ PyErr_ProgramText(const char *filename, int lineno) break; /* fgets read *something*; if it didn't get as far as pLastChar, it must have found a newline - or hit the end of the file; if pLastChar is \n, + or hit the end of the file; if pLastChar is \n, it obviously found a newline; else we haven't yet seen a newline, so must continue */ } while (*pLastChar != '\0' && *pLastChar != '\n');