* tradcpp.h: For tradcpp, NUL is not whitespace.
From-SVN: r38194
This commit is contained in:
parent
fb72e39524
commit
4028c3a1cf
2 changed files with 5 additions and 1 deletions
|
@ -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.
|
||||
|
|
|
@ -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_ */
|
||||
|
|
Loading…
Add table
Reference in a new issue