diff options
author | Neil Booth <neil@daikokuya.demon.co.uk> | 2001-09-15 18:16:01 +0000 |
---|---|---|
committer | Neil Booth <neil@gcc.gnu.org> | 2001-09-15 18:16:01 +0000 |
commit | 69e47210d98907e39a780265697f554f44fc8a1e (patch) | |
tree | 7203b75307e05aad726bf155582ebf8d8d5e6df2 /gcc/tradcpp.c | |
parent | f0581dc71488675d40334ddcfb75f84777456b08 (diff) | |
download | gcc-69e47210d98907e39a780265697f554f44fc8a1e.zip gcc-69e47210d98907e39a780265697f554f44fc8a1e.tar.gz gcc-69e47210d98907e39a780265697f554f44fc8a1e.tar.bz2 |
re PR preprocessor/3571 (cpp -traditional inserts line breaks)
PR preprocessor/3571
* tradcpp.c (handle_directive): Skip non-vertical space.
From-SVN: r45633
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 062d54e..3ceecef 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); } |