diff options
author | Jim Wilson <wilson@gcc.gnu.org> | 1993-01-11 14:21:52 -0800 |
---|---|---|
committer | Jim Wilson <wilson@gcc.gnu.org> | 1993-01-11 14:21:52 -0800 |
commit | 883bc780752784d32304321283176d4837346ce7 (patch) | |
tree | c4a310c56a7440e9adc0833466f4827152072435 /gcc | |
parent | e515e507930fe73cb20cd3b204671b9492da2a4c (diff) | |
download | gcc-883bc780752784d32304321283176d4837346ce7.zip gcc-883bc780752784d32304321283176d4837346ce7.tar.gz gcc-883bc780752784d32304321283176d4837346ce7.tar.bz2 |
Do not consider //* to be a C++ comment which needs to be fixed.
From-SVN: r3194
Diffstat (limited to 'gcc')
-rwxr-xr-x | gcc/fixincludes | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/fixincludes b/gcc/fixincludes index 6c48066..218085f 100755 --- a/gcc/fixincludes +++ b/gcc/fixincludes @@ -244,7 +244,7 @@ while [ $# != 0 ]; do :loop /\\$/ N /\\$/ b loop - /\/\// s|//\(.*\)$|/*\1*/| + /\/\/[^*]/ s|//\(.*\)$|/*\1*/| /[ ]_IO[A-Z]*[ ]*(/ s/(\(.\),/('\''\1'\'',/ /[ ]BSD43__IO[A-Z]*[ ]*(/ s/(\(.\),/('\''\1'\'',/ /#define._IO/ s/'\''x'\''/x/g |