diff options
author | Doug Evans <dje@google.com> | 2010-11-04 20:18:42 +0000 |
---|---|---|
committer | Doug Evans <dje@google.com> | 2010-11-04 20:18:42 +0000 |
commit | 23fa7f66ac5f3ae5ea7c44bf45771e1b666c5ef3 (patch) | |
tree | 736445fcf0b9a4542bc139d11df9d8ed89891810 /gdb/python | |
parent | 03eb1c79d47c095c3777ad8c382723b3b720b733 (diff) | |
download | gdb-23fa7f66ac5f3ae5ea7c44bf45771e1b666c5ef3.zip gdb-23fa7f66ac5f3ae5ea7c44bf45771e1b666c5ef3.tar.gz gdb-23fa7f66ac5f3ae5ea7c44bf45771e1b666c5ef3.tar.bz2 |
* python/py-prettyprint.c (find_pretty_printer_from_gdb): Fix comment.
(find_pretty_printer): Fix comments.
Diffstat (limited to 'gdb/python')
-rw-r--r-- | gdb/python/py-prettyprint.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gdb/python/py-prettyprint.c b/gdb/python/py-prettyprint.c index 37c4078..afe2b40 100644 --- a/gdb/python/py-prettyprint.c +++ b/gdb/python/py-prettyprint.c @@ -149,7 +149,7 @@ find_pretty_printer_from_gdb (PyObject *value) PyObject *pp_list; PyObject *function; - /* Fetch the global pretty printer dictionary. */ + /* Fetch the global pretty printer list. */ if (! PyObject_HasAttrString (gdb_module, "pretty_printers")) Py_RETURN_NONE; pp_list = PyObject_GetAttrString (gdb_module, "pretty_printers"); @@ -173,20 +173,20 @@ find_pretty_printer (PyObject *value) { PyObject *function; - /* Look at the pretty-printer dictionary for each objfile + /* Look at the pretty-printer list for each objfile in the current program-space. */ function = find_pretty_printer_from_objfiles (value); if (function == NULL || function != Py_None) return function; Py_DECREF (function); - /* Look at the pretty-printer dictionary for the current program-space. */ + /* Look at the pretty-printer list for the current program-space. */ function = find_pretty_printer_from_progspace (value); if (function == NULL || function != Py_None) return function; Py_DECREF (function); - /* Look at the pretty-printer dictionary in the gdb module. */ + /* Look at the pretty-printer list in the gdb module. */ function = find_pretty_printer_from_gdb (value); return function; } |