diff options
author | Nick Clifton <nickc@redhat.com> | 2002-08-14 10:44:54 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2002-08-14 10:44:54 +0000 |
commit | 85c09e8a4ae4a7a18e891b5cc1ebdc0111e39e17 (patch) | |
tree | 1c4e174eaae1a055497c62c3ab443678b4ddf785 /binutils/rcparse.y | |
parent | 1fd03b5ab2e0b0d7deefff200384e02f5debe5fb (diff) | |
download | gdb-85c09e8a4ae4a7a18e891b5cc1ebdc0111e39e17.zip gdb-85c09e8a4ae4a7a18e891b5cc1ebdc0111e39e17.tar.gz gdb-85c09e8a4ae4a7a18e891b5cc1ebdc0111e39e17.tar.bz2 |
Don't warn about ALT use with non-VIRTKEY.
Diffstat (limited to 'binutils/rcparse.y')
-rw-r--r-- | binutils/rcparse.y | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/binutils/rcparse.y b/binutils/rcparse.y index 898e99f..1f10da7 100644 --- a/binutils/rcparse.y +++ b/binutils/rcparse.y @@ -219,7 +219,7 @@ acc_entry: $$.id = $2; $$.flags |= $4; if (($$.flags & ACC_VIRTKEY) == 0 - && ($$.flags & (ACC_SHIFT | ACC_CONTROL | ACC_ALT)) != 0) + && ($$.flags & (ACC_SHIFT | ACC_CONTROL)) != 0) rcparse_warning (_("inappropriate modifiers for non-VIRTKEY")); } ; |