summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Objects/fileobject.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/Objects/fileobject.c b/Objects/fileobject.c
index 09690c6..f87e22e 100644
--- a/Objects/fileobject.c
+++ b/Objects/fileobject.c
@@ -188,8 +188,8 @@ file_readline(f, args)
v = newsizedstringobject((char *)NULL, n);
if (v == NULL)
return NULL;
-#ifndef THINK_C
- /* XXX Think C reads n characters, others read n-1 characters... */
+#ifndef THINK_C_3_0
+ /* XXX Think C 3.0 wrongly reads up to n characters... */
n = n+1;
#endif
if (fgets(getstringvalue(v), n, f->f_fp) == NULL) {