diff options
author | Tom Tromey <tom@tromey.com> | 2019-10-27 15:50:54 -0600 |
---|---|---|
committer | Tom Tromey <tom@tromey.com> | 2019-11-06 07:29:43 -0700 |
commit | e0eac551da0afeec8ec17f457e4e1da1756e0aab (patch) | |
tree | b9c7c2fdfaba4c497ab45124f37d8169c5111e82 /gdb/tui | |
parent | 75802ccb60bfece30005d85de983181afe4e5306 (diff) | |
download | gdb-e0eac551da0afeec8ec17f457e4e1da1756e0aab.zip gdb-e0eac551da0afeec8ec17f457e4e1da1756e0aab.tar.gz gdb-e0eac551da0afeec8ec17f457e4e1da1756e0aab.tar.bz2 |
Remove some includes of readline.h
I went through most of the spots that include readline.h and, when
appropriate, either removed the include or changed it to include
tilde.h.
Note that remote-sim.c and bsd-kvm.c could probably include tilde.h
instead, but I did not change these. I think I can't build the
latter, and I didn't want to set up a sim build for the former.
Tested by rebuilding.
gdb/ChangeLog
2019-11-06 Tom Tromey <tom@tromey.com>
* tui/tui-interp.c: Don't include readline.h.
* tui/tui-hooks.c: Don't include readline.h.
* symmisc.c: Include tilde.h, not readline.h.
* symfile.c: Include tilde.h, not readline.h.
* source.c: Include tilde.h, not readline.h.
* solib.c: Include tilde.h, not readline.h.
* psymtab.c: Include tilde.h, not readline.h.
* exec.c: Include tilde.h, not readline.h.
* corelow.c: Include tilde.h, not readline.h.
* cli/cli-dump.c: Include tilde.h, not readline.h.
* cli/cli-cmds.c: Don't include readline.h.
Change-Id: I60487a190c43128b800ef77517d1ab42957571d7
Diffstat (limited to 'gdb/tui')
-rw-r--r-- | gdb/tui/tui-hooks.c | 5 | ||||
-rw-r--r-- | gdb/tui/tui-interp.c | 1 |
2 files changed, 0 insertions, 6 deletions
diff --git a/gdb/tui/tui-hooks.c b/gdb/tui/tui-hooks.c index 2555da7..bb96f4d 100644 --- a/gdb/tui/tui-hooks.c +++ b/gdb/tui/tui-hooks.c @@ -49,11 +49,6 @@ #include "gdb_curses.h" -/* This redefines CTRL if it is not already defined, so it must come - after terminal state releated include files like <term.h> and - "gdb_curses.h". */ -#include "readline/readline.h" - static void tui_new_objfile_hook (struct objfile* objfile) { diff --git a/gdb/tui/tui-interp.c b/gdb/tui/tui-interp.c index ea562ac..bc8fde3 100644 --- a/gdb/tui/tui-interp.c +++ b/gdb/tui/tui-interp.c @@ -26,7 +26,6 @@ #include "ui-out.h" #include "cli-out.h" #include "tui/tui-data.h" -#include "readline/readline.h" #include "tui/tui-win.h" #include "tui/tui.h" #include "tui/tui-io.h" |