diff options
author | Muhammad Bilal <mbilal@sourceware.org> | 2013-04-24 14:29:17 +0000 |
---|---|---|
committer | Muhammad Bilal <mbilal@sourceware.org> | 2013-04-24 14:29:17 +0000 |
commit | bf9e4d0c1f88710c2a389bf4b1bdf1d0d83fa7f4 (patch) | |
tree | 23d70aeb0bcb8238e01dd4cdd79c9b198a7d7353 /gdb/cli | |
parent | ad83dabf1c9d2fa1f8e228ffb7db60ff25d63937 (diff) | |
download | gdb-bf9e4d0c1f88710c2a389bf4b1bdf1d0d83fa7f4.zip gdb-bf9e4d0c1f88710c2a389bf4b1bdf1d0d83fa7f4.tar.gz gdb-bf9e4d0c1f88710c2a389bf4b1bdf1d0d83fa7f4.tar.bz2 |
2013-04-24 Muhammad Bilal <mbilal@codesourcery.com>
PR gdb/10462
* cli/cli-decode.c (lookup_command): Show an error if there is no space
before argument.
2013-04-24 Muhammad Bilal <mbilal@codesourcery.com>
PR gdb/10462
* gdb.base/setshow.exp: Add test case.
Diffstat (limited to 'gdb/cli')
-rw-r--r-- | gdb/cli/cli-decode.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/gdb/cli/cli-decode.c b/gdb/cli/cli-decode.c index 9bc14b5..2fdd9e4 100644 --- a/gdb/cli/cli-decode.c +++ b/gdb/cli/cli-decode.c @@ -1556,6 +1556,9 @@ lookup_cmd (const char **line, struct cmd_list_element *list, char *cmdtype, } else { + if (c->type == set_cmd && **line != '\0' && !isspace (**line)) + error (_("Argument must be preceded by space.")); + /* We've got something. It may still not be what the caller wants (if this command *needs* a subcommand). */ while (**line == ' ' || **line == '\t') |