diff options
author | Jan Kiszka <[email protected]> | 2015-06-30 14:58:13 -0700 |
---|---|---|
committer | Linus Torvalds <[email protected]> | 2015-06-30 19:44:58 -0700 |
commit | 3328bc9ee47fbf2e35d146bed0d41cff1c68e8f3 (patch) | |
tree | b2596296974aa778bfd00836e4a9a219ba8eaafe /scripts/gdb/linux/lists.py | |
parent | 433296b32b39bd2f8a8717ccb2385b4c8654017d (diff) |
scripts/gdb: enable completion for lx-list-check parameter
Signed-off-by: Jan Kiszka <[email protected]>
Cc: ThiƩbaud Weksteen <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
Diffstat (limited to 'scripts/gdb/linux/lists.py')
-rw-r--r-- | scripts/gdb/linux/lists.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/scripts/gdb/linux/lists.py b/scripts/gdb/linux/lists.py index 71fba6afcb55..3a3775bc162b 100644 --- a/scripts/gdb/linux/lists.py +++ b/scripts/gdb/linux/lists.py @@ -80,7 +80,8 @@ class LxListChk(gdb.Command): """Verify a list consistency""" def __init__(self): - super(LxListChk, self).__init__("lx-list-check", gdb.COMMAND_DATA) + super(LxListChk, self).__init__("lx-list-check", gdb.COMMAND_DATA, + gdb.COMPLETE_EXPRESSION) def invoke(self, arg, from_tty): argv = gdb.string_to_argv(arg) |