summaryrefslogtreecommitdiff
path: root/gcc/tradcpp.h
diff options
context:
space:
mode:
authorneil <neil@138bc75d-0d04-0410-961f-82ee72b054a4>2000-12-11 19:38:15 +0000
committerneil <neil@138bc75d-0d04-0410-961f-82ee72b054a4>2000-12-11 19:38:15 +0000
commit5f48701c26154c39ea85f2ab8127fc961e2a434f (patch)
treecec5032e99dd3e5a8b3c4d08498f4272a4788c45 /gcc/tradcpp.h
parentf0b59ecd3e755efac75bd1bba400de0e26e48562 (diff)
downloadgcc-5f48701c26154c39ea85f2ab8127fc961e2a434f.tar.gz
* tradcpp.h: For tradcpp, NUL is not whitespace.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@38194 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/tradcpp.h')
-rw-r--r--gcc/tradcpp.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/tradcpp.h b/gcc/tradcpp.h
index f4c9ff34e3d..d5ec19e5798 100644
--- a/gcc/tradcpp.h
+++ b/gcc/tradcpp.h
@@ -39,6 +39,6 @@ extern int test_assertion PARAMS ((unsigned char **));
#define is_idchar(x) ISIDNUM(x)
#define is_idstart(x) ISIDST(x)
#define is_space(x) ISSPACE(x)
-#define is_nvspace(x) IS_NVSPACE(x)
+#define is_nvspace(x) (IS_NVSPACE(x) && x != '\0')
#endif /* ! _TRADCPP_H_ */