diff options
author | Michael Snyder <msnyder@specifix.com> | 2011-02-26 02:07:06 +0000 |
---|---|---|
committer | Michael Snyder <msnyder@specifix.com> | 2011-02-26 02:07:06 +0000 |
commit | e95a0a9bf0afe088816b1e49b66d952e9835c543 (patch) | |
tree | 71b74f05c52e567cfca88a9ebd4075dd051d1234 /gdb/python | |
parent | 62daee5c00c23719d0a44763cdff443dca513724 (diff) | |
download | gdb-e95a0a9bf0afe088816b1e49b66d952e9835c543.tar.gz |
2011-02-25 Michael Snyder <msnyder@vmware.com>
* arm-tdep.c: Fix typos in comments.
* bsd-uthread.c: Ditto.
* completer.c: Ditto.
* corelow.c: Ditto.
* cp-namespace.c: Ditto.
* cp-support.c: Ditto.
* cris-tdep.c: Ditto.
* dbxread.c: Ditto.
* dwarf2read.c: Ditto.
* frame.h: Ditto.
* gdbtypes.h: Ditto.
* inferior.h: Ditto.
* mdebugread.c: Ditto.
* mips-tdep.c: Ditto.
* ppc-linux-nat.c: Ditto.
* ppc-linux-tdep.c: Ditto.
* printcmd.c: Ditto.
* sol-thread.c: Ditto.
* solib-frv.c: Ditto.
* solist.h: Ditto.
* sparc64-tdep.c: Ditto.
* spu-tdep.c: Ditto.
* stabsread.c: Ditto.
* symfile.c: Ditto.
* valops.c: Ditto.
* varobj.c: Ditto.
* vax-nat.c: Ditto.
* python/py-block.c: Ditto.
* python/py-symbol.c: Ditto.
* python/py-symtab.c: Ditto.
* python/py-value.c: Ditto.
* tui/tui-win.c: Ditto.
Diffstat (limited to 'gdb/python')
-rw-r--r-- | gdb/python/py-block.c | 2 | ||||
-rw-r--r-- | gdb/python/py-symbol.c | 2 | ||||
-rw-r--r-- | gdb/python/py-symtab.c | 14 | ||||
-rw-r--r-- | gdb/python/py-value.c | 2 |
4 files changed, 10 insertions, 10 deletions
diff --git a/gdb/python/py-block.c b/gdb/python/py-block.c index faa4c463693..9d0d6ccbcdb 100644 --- a/gdb/python/py-block.c +++ b/gdb/python/py-block.c @@ -173,7 +173,7 @@ blpy_dealloc (PyObject *obj) /* Given a block, and a block_object that has previously been allocated and initialized, populate the block_object with the struct block data. Also, register the block_object life-cycle - with the life-cycle of the the object file associated with this + with the life-cycle of the object file associated with this block, if needed. */ static void set_block (block_object *obj, struct block *block, diff --git a/gdb/python/py-symbol.c b/gdb/python/py-symbol.c index 390d61248ac..2df2336921e 100644 --- a/gdb/python/py-symbol.c +++ b/gdb/python/py-symbol.c @@ -170,7 +170,7 @@ sympy_is_variable (PyObject *self, void *closure) /* Given a symbol, and a symbol_object that has previously been allocated and initialized, populate the symbol_object with the struct symbol data. Also, register the symbol_object life-cycle - with the life-cycle of the the object file associated with this + with the life-cycle of the object file associated with this symbol, if needed. */ static void set_symbol (symbol_object *obj, struct symbol *symbol) diff --git a/gdb/python/py-symtab.c b/gdb/python/py-symtab.c index 95dda5ddc9a..5c1c6bb728d 100644 --- a/gdb/python/py-symtab.c +++ b/gdb/python/py-symtab.c @@ -231,12 +231,12 @@ salpy_dealloc (PyObject *self) self_sal->ob_type->tp_free (self); } -/* Given a sal, and a sal_object that has previously been - allocated and initialized, populate the sal_object with the - struct sal data. Also, register the sal_object life-cycle with the - life-cycle of the the object file associated with this sal, if - needed. If a failure occurs during the sal population, this - function will return NULL. */ +/* Given a sal, and a sal_object that has previously been allocated + and initialized, populate the sal_object with the struct sal data. + Also, register the sal_object life-cycle with the life-cycle of the + object file associated with this sal, if needed. If a failure + occurs during the sal population, this function will return + NULL. */ static int set_sal (sal_object *sal_obj, struct symtab_and_line sal) { @@ -282,7 +282,7 @@ set_sal (sal_object *sal_obj, struct symtab_and_line sal) /* Given a symtab, and a symtab_object that has previously been allocated and initialized, populate the symtab_object with the struct symtab data. Also, register the symtab_object life-cycle - with the life-cycle of the the object file associated with this + with the life-cycle of the object file associated with this symtab, if needed. */ static void set_symtab (symtab_object *obj, struct symtab *symtab) diff --git a/gdb/python/py-value.c b/gdb/python/py-value.c index 27bf101c642..0eda62045a7 100644 --- a/gdb/python/py-value.c +++ b/gdb/python/py-value.c @@ -34,7 +34,7 @@ #include "python-internal.h" /* Even though Python scalar types directly map to host types, we use - target types here to remain consistent with the the values system in + target types here to remain consistent with the values system in GDB (which uses target arithmetic). */ /* Python's integer type corresponds to C's long type. */ |