* python/lib/gdb/command/pretty_printers.py
(InfoPrettyPrinter.invoke1): Remove extra double quote.
This commit is contained in:
parent
7376e45089
commit
75c8c9d72c
2 changed files with 6 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
||||||
|
2011-12-06 Tom Tromey <tromey@redhat.com>
|
||||||
|
|
||||||
|
* python/lib/gdb/command/pretty_printers.py
|
||||||
|
(InfoPrettyPrinter.invoke1): Remove extra double quote.
|
||||||
|
|
||||||
2011-12-06 Tom Tromey <tromey@redhat.com>
|
2011-12-06 Tom Tromey <tromey@redhat.com>
|
||||||
|
|
||||||
* NEWS: Add MI news.
|
* NEWS: Add MI news.
|
||||||
|
|
|
@ -148,7 +148,7 @@ class InfoPrettyPrinter(gdb.Command):
|
||||||
|
|
||||||
def invoke1(self, title, printer_list,
|
def invoke1(self, title, printer_list,
|
||||||
obj_name_to_match, object_re, name_re, subname_re):
|
obj_name_to_match, object_re, name_re, subname_re):
|
||||||
""""Subroutine of invoke to simplify it."""
|
"""Subroutine of invoke to simplify it."""
|
||||||
if printer_list and object_re.match(obj_name_to_match):
|
if printer_list and object_re.match(obj_name_to_match):
|
||||||
print title
|
print title
|
||||||
self.list_pretty_printers(printer_list, name_re, subname_re)
|
self.list_pretty_printers(printer_list, name_re, subname_re)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue