diff options
author | Zack Weinberg <zack@wolery.cumb.org> | 2000-02-06 20:08:22 +0000 |
---|---|---|
committer | Zack Weinberg <zack@gcc.gnu.org> | 2000-02-06 20:08:22 +0000 |
commit | 25e309705ac7405b86e15bc4db7e58b7febdfdc2 (patch) | |
tree | f2d5a23fa2ba480ea52c173d02a48df7234f9d2e /gcc/cpplib.c | |
parent | 9a7372d64614a15d430fdf60a925a8958eec3ff3 (diff) | |
download | gcc-25e309705ac7405b86e15bc4db7e58b7febdfdc2.zip gcc-25e309705ac7405b86e15bc4db7e58b7febdfdc2.tar.gz gcc-25e309705ac7405b86e15bc4db7e58b7febdfdc2.tar.bz2 |
cpplib.c (copy_rest_of_line): Revert previous change: don't bail out early if we hit a line comment.
* cpplib.c (copy_rest_of_line): Revert previous change: don't
bail out early if we hit a line comment.
From-SVN: r31828
Diffstat (limited to 'gcc/cpplib.c')
-rw-r--r-- | gcc/cpplib.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/gcc/cpplib.c b/gcc/cpplib.c index 40c3c3a..45b35f4 100644 --- a/gcc/cpplib.c +++ b/gcc/cpplib.c @@ -478,8 +478,6 @@ copy_rest_of_line (pfile) /* else fall through */ case '-': c = skip_comment (pfile, c); - if (c == ' ') - return; break; case '\f': |