Commit 4028c3a1 by Neil Booth Committed by Neil Booth

* tradcpp.h: For tradcpp, NUL is not whitespace.

From-SVN: r38194
parent fb72e395
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.
2000-12-05 Marek Michalkiewicz <marekm@linux.org.pl>
......
......@@ -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_ */
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment