diff options
author | Yit Phang Khoo <khooyp@sourceware.org> | 2012-08-22 21:04:55 +0000 |
---|---|---|
committer | Yit Phang Khoo <khooyp@sourceware.org> | 2012-08-22 21:04:55 +0000 |
commit | 037bbc8eeaf8e6f3a5e185e78268aa71a1159ae7 (patch) | |
tree | 202bf8881c03b44f3eb8dedee740ab76661a338b /gdb/python/python.c | |
parent | 406b1477f51e5a4f953f2792fb14e5c3cf1dc1df (diff) | |
download | gdb-037bbc8eeaf8e6f3a5e185e78268aa71a1159ae7.zip gdb-037bbc8eeaf8e6f3a5e185e78268aa71a1159ae7.tar.gz gdb-037bbc8eeaf8e6f3a5e185e78268aa71a1159ae7.tar.bz2 |
Enable readline in Python in a GDB-specific way and block the
standard Python readline module to prevent conflicts with GDB.
* Makefile.in (SUBDIR_PYTHON_OBS): Add py-gdb-readline.o.
(SUBDIR_PYTHON_SRCS): Add python/py-gdb-readline.c.
(py-gdb-readline.o): Add rule to compile python/py-gdb-readline.c.
* python/py-gdb-readline.c: New file.
* python/python-internal.h (gdbpy_initialize_gdb_readline): New
prototype.
* python/python.c (_initialize_python): Call
gdbpy_initialize_gdb_readline.
Diffstat (limited to 'gdb/python/python.c')
-rw-r--r-- | gdb/python/python.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gdb/python/python.c b/gdb/python/python.c index ad735ce..1e59d1e 100644 --- a/gdb/python/python.c +++ b/gdb/python/python.c @@ -1389,6 +1389,7 @@ message == an error message without a stack will be printed."), gdbpy_gdberror_exc = PyErr_NewException ("gdb.GdbError", NULL, NULL); PyModule_AddObject (gdb_module, "GdbError", gdbpy_gdberror_exc); + gdbpy_initialize_gdb_readline (); gdbpy_initialize_auto_load (); gdbpy_initialize_values (); gdbpy_initialize_frames (); |