aboutsummaryrefslogtreecommitdiffstats
path: root/src/input/TextInputStream.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'src/input/TextInputStream.cxx')
-rw-r--r--src/input/TextInputStream.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/input/TextInputStream.cxx b/src/input/TextInputStream.cxx
index b90eeacc0..36aa5f408 100644
--- a/src/input/TextInputStream.cxx
+++ b/src/input/TextInputStream.cxx
@@ -72,7 +72,7 @@ TextInputStream::ReadLine()
buffer.Consume(p - src + 1);
- while (p > src && IsWhitespaceOrNull(p[-1]))
+ while (p > src && IsWhitespaceFast(p[-1]))
--p;
*p = 0;
return src;