diff options
author | Elena Zannoni <ezannoni@kwikemart.cygnus.com> | 2003-02-14 20:36:58 +0000 |
---|---|---|
committer | Elena Zannoni <ezannoni@kwikemart.cygnus.com> | 2003-02-14 20:36:58 +0000 |
commit | 3b27aeeaa9c83198c5201af3055c720b87f86992 (patch) | |
tree | 77826e839b2fb28dc20b442579a2c2275202736f /gdb/cli | |
parent | b0b1c2c0ebc1f12ddf52682d75c3dc7bcbbe55ca (diff) | |
download | binutils-gdb-3b27aeeaa9c83198c5201af3055c720b87f86992.tar.gz |
2003-02-14 Elena Zannoni <ezannoni@redhat.com>
From Brian Ford <ford@vss.fsi.com>
* cli/cli-decode.c (lookup_cmd_composition) [TUI]: Properly
conditionalize tui_active test.
(lookup_cmd_1): Ditto.
Diffstat (limited to 'gdb/cli')
-rw-r--r-- | gdb/cli/cli-decode.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gdb/cli/cli-decode.c b/gdb/cli/cli-decode.c index a9979f633ba..2a6d196930e 100644 --- a/gdb/cli/cli-decode.c +++ b/gdb/cli/cli-decode.c @@ -927,8 +927,10 @@ lookup_cmd_1 (char **text, struct cmd_list_element *clist, `tui_version'. */ for (p = *text; *p && (isalnum (*p) || *p == '-' || *p == '_' || +#if defined(TUI) (tui_active && (*p == '+' || *p == '<' || *p == '>' || *p == '$')) || +#endif (xdb_commands && (*p == '!' || *p == '/' || *p == '?'))); p++) ; @@ -1299,8 +1301,10 @@ lookup_cmd_composition (char *text, `tui_version'. */ for (p = text; *p && (isalnum (*p) || *p == '-' || *p == '_' || +#if defined(TUI) (tui_active && (*p == '+' || *p == '<' || *p == '>' || *p == '$')) || +#endif (xdb_commands && (*p == '!' || *p == '/' || *p == '?'))); p++) ; |