From 92e32e33f16b40988327df8e8beacf3a8a356916 Mon Sep 17 00:00:00 2001 From: Phil Muldoon Date: Thu, 7 Nov 2013 12:32:31 +0000 Subject: 2013-11-07 Phil Muldoon PR python/15747 * python/py-cmd.c: Add COMPLETE_EXPRESSION constant. 2013-11-07 Phil Muldoon * gdb.python/py-cmd.exp: Add COMPLETE_EXPRESSION tests. * gdb.python/py-cmd.c: New File. 2013-11-07 Phil Muldoon * gdb.texinfo (Commands In Python): Document COMPLETE_EXPRESSION constant. --- gdb/python/py-cmd.c | 1 + 1 file changed, 1 insertion(+) (limited to 'gdb/python') diff --git a/gdb/python/py-cmd.c b/gdb/python/py-cmd.c index 8b6252e..56321fa 100644 --- a/gdb/python/py-cmd.c +++ b/gdb/python/py-cmd.c @@ -45,6 +45,7 @@ static struct cmdpy_completer completers[] = { "COMPLETE_LOCATION", location_completer }, { "COMPLETE_COMMAND", command_completer }, { "COMPLETE_SYMBOL", make_symbol_completion_list_fn }, + { "COMPLETE_EXPRESSION", expression_completer }, }; #define N_COMPLETERS (sizeof (completers) / sizeof (completers[0])) -- cgit v1.1