diff options
author | neil <neil@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-09-15 18:16:01 +0000 |
---|---|---|
committer | neil <neil@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-09-15 18:16:01 +0000 |
commit | 5a7bab0aa83214dca5ca2654e0216f64fa45cb85 (patch) | |
tree | 7203b75307e05aad726bf155582ebf8d8d5e6df2 /gcc/tradcpp.c | |
parent | b6ab2997b7a31d15e759fe16adff76ac1be3803e (diff) | |
download | gcc-5a7bab0aa83214dca5ca2654e0216f64fa45cb85.tar.gz |
PR preprocessor/3571
* tradcpp.c (handle_directive): Skip non-vertical space.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@45633 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/tradcpp.c')
-rw-r--r-- | gcc/tradcpp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/tradcpp.c b/gcc/tradcpp.c index 062d54e0e17..3ceeceffb95 100644 --- a/gcc/tradcpp.c +++ b/gcc/tradcpp.c @@ -2075,7 +2075,7 @@ handle_directive (ip, op) while (cp != buf && is_space(cp[-1])) cp--; cp++; SKIP_WHITE_SPACE (xp); - } else if (is_space (*xp)) { + } else if (is_nvspace (*xp)) { *cp++ = *xp++; SKIP_WHITE_SPACE (xp); } |