diff options
author | gdb-2.8 <gdb@fsf.org> | 1988-09-03 08:00:00 +0100 |
---|---|---|
committer | Pedro Alves <palves@redhat.com> | 2012-06-03 15:36:31 +0100 |
commit | 3bf57d210832b28e9361990830eb722a619f031b (patch) | |
tree | ba506d293bde0f6500d0cee3e643ebf8890d9cf7 /gdb/command.c | |
parent | 7c75bab3d3ef344a6a0b13b9ab59ecd5855aceb5 (diff) | |
download | ppe42-binutils-3bf57d210832b28e9361990830eb722a619f031b.tar.gz ppe42-binutils-3bf57d210832b28e9361990830eb722a619f031b.zip |
gdb-2.8
Diffstat (limited to 'gdb/command.c')
-rw-r--r-- | gdb/command.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/command.c b/gdb/command.c index ec5bfc0876..6643ad8d44 100644 --- a/gdb/command.c +++ b/gdb/command.c @@ -370,7 +370,7 @@ lookup_cmd (line, list, cmdtype, allow_unknown) while (*p == '-' || (*p >= 'a' && *p <= 'z') || (*p >= 'A' && *p <= 'Z') - || (*p >= '1' && *p <= '9')) + || (*p >= '0' && *p <= '9')) { if (*p >= 'A' && *p <= 'Z') *p += 'a' - 'A'; |