diff options
author | rms <rms@138bc75d-0d04-0410-961f-82ee72b054a4> | 1993-05-20 19:06:46 +0000 |
---|---|---|
committer | rms <rms@138bc75d-0d04-0410-961f-82ee72b054a4> | 1993-05-20 19:06:46 +0000 |
commit | 12ada8f2f6d417fc8c7842bd72af0463fd7e1fe9 (patch) | |
tree | b55bfbbcc7a58fa1e65fdf2e3d0d63b7c8dc398a /gcc/fixincludes | |
parent | c36d349dfb943a2ec7157f7b22b0bc7ea8e5e420 (diff) | |
download | gcc-12ada8f2f6d417fc8c7842bd72af0463fd7e1fe9.tar.gz |
(Fixing CTRL): Reject CTRL or _CTRL following digit.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@4519 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/fixincludes')
-rwxr-xr-x | gcc/fixincludes | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/fixincludes b/gcc/fixincludes index 294077aa3f9..5bbffe58433 100755 --- a/gcc/fixincludes +++ b/gcc/fixincludes @@ -277,8 +277,8 @@ while [ $# != 0 ]; do /[ ]BSD43__IO[A-Z]*[ ]*(/ s/(\(.\),/('\''\1'\'',/ /#define._IO/ s/'\''\([cgx]\)'\''/\1/g /#define.BSD43__IO/ s/'\''\([cgx]\)'\''/\1/g - /[^A-Z_]CTRL[ ]*(/ s/\([^'\'']\))/'\''\1'\'')/ - /[^A-Z]_CTRL[ ]*(/ s/\([^'\'']\))/'\''\1'\'')/ + /[^A-Z0-9_]CTRL[ ]*(/ s/\([^'\'']\))/'\''\1'\'')/ + /[^A-Z0-9]_CTRL[ ]*(/ s/\([^'\'']\))/'\''\1'\'')/ /#define.CTRL/ s/'\''\([cgx]\)'\''/\1/g /#define._CTRL/ s/'\''\([cgx]\)'\''/\1/g /#define.BSD43_CTRL/ s/'\''\([cgx]\)'\''/\1/g |