diff options
Diffstat (limited to 'gdb/completer.c')
-rw-r--r-- | gdb/completer.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/gdb/completer.c b/gdb/completer.c index 7f63ced..4c1ad25 100644 --- a/gdb/completer.c +++ b/gdb/completer.c @@ -1388,9 +1388,8 @@ complete_line_internal_1 (completion_tracker &tracker, result_list = 0; } else - { - c = lookup_cmd_1 (&p, cmdlist, &result_list, NULL, ignore_help_classes); - } + c = lookup_cmd_1 (&p, cmdlist, &result_list, NULL, ignore_help_classes, + true); /* Move p up to the next interesting thing. */ while (*p == ' ' || *p == '\t') |