projects
/
gcc.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
fb72e39
)
* tradcpp.h: For tradcpp, NUL is not whitespace.
author
Neil Booth
<neilb@earthling.net>
Mon, 11 Dec 2000 19:38:15 +0000
(19:38 +0000)
committer
Neil Booth
<neil@gcc.gnu.org>
Mon, 11 Dec 2000 19:38:15 +0000
(19:38 +0000)
From-SVN: r38194
gcc/ChangeLog
patch
|
blob
|
history
gcc/tradcpp.h
patch
|
blob
|
history
diff --git
a/gcc/ChangeLog
b/gcc/ChangeLog
index 5962fbd61549ee0e158405421bec47552d18b67a..5b463a7bb4290aa9103c7a8488086353add98b05 100644
(file)
--- a/
gcc/ChangeLog
+++ b/
gcc/ChangeLog
@@
-1,3
+1,7
@@
+2000-12-11 Neil Booth <neilb@earthling.net>
+
+ * tradcpp.h: For tradcpp, NUL is not whitespace.
+
2000-12-11 Neil Booth <neilb@earthling.net>
* fix-header.c (read_scan_file): Macro expansion is not a file buffer.
diff --git
a/gcc/tradcpp.h
b/gcc/tradcpp.h
index f4c9ff34e3de54402f305b4276e898b9ff1a7645..d5ec19e57988e32a73df550c8ff471c2907bbcdc 100644
(file)
--- 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_ */