summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorragge <ragge>2009-08-07 19:45:09 +0000
committerragge <ragge>2009-08-07 19:45:09 +0000
commitcd8b090362cccd068c74f35b6ea5fa5daae8f111 (patch)
tree26ee4fa72e722e08ce5900f5f7cc865f65410140
parent8b9975002d30dc1189655375b4dd14c63fe9e529 (diff)
Check for \t was accidentally written \n, causing #<tab>define to fail.
Fixes Jira#PCC-68 reported by Jonathan Gray.
-rw-r--r--token.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/token.c b/token.c
index a8fe20a..28addab 100644
--- a/token.c
+++ b/token.c
@@ -1120,7 +1120,7 @@ ppdir(void)
char bp[10];
int ch, i;
- while ((ch = inch()) == ' ' || ch == '\n')
+ while ((ch = inch()) == ' ' || ch == '\t')
;
if (ch < 'a' || ch > 'z')
goto out; /* something else, ignore */