From 037bbc8eeaf8e6f3a5e185e78268aa71a1159ae7 Mon Sep 17 00:00:00 2001 From: Yit Phang Khoo Date: Wed, 22 Aug 2012 21:04:55 +0000 Subject: 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. --- gdb/python/python.c | 1 + 1 file changed, 1 insertion(+) (limited to 'gdb/python/python.c') 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 (); -- cgit v1.1