This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository binutils-gdb.
from 3f0cbb04d0f Style field names in "print" new 2a3d458be38 Use TUI_DISASM_WIN instead of tui_win_list array new 59b8b5d2477 Simplify tui_add_win_to_layout new 3fe12b6d671 Fix latent display bug in tui_data_window new 427326a8268 Simplify TUI C-x 2 binding new 5afe342e2a6 Reimplement TUI "C-x 1" binding new 0dbc2fc759f Reimplement "tui reg" command new 416eb92d84a Remove hard-coded TUI layouts new ee325b61cd4 Add the "tui new-layout" command new c22fef7e4cf Allow TUI sub-layouts in "new-layout" command new 6bc5664858d Change return type of tui_layout_base::adjust_size new 7c043ba695a Add horizontal splitting to TUI layout new 7eed1a8e838 Change TUI window iteration new eb9c8874568 Reimplement tui_next_win and tui_prev_win new e098d18cfc1 Handle ambiguity in tui_partial_win_by_name new 865a5aec04b Remove tui_delete_invisible_windows and tui_make_all_invisible new fdb01f0ce44 TUI windows do not need to store their type new 0240c8f11b0 Change how TUI windows are instantiated new 935c78c0468 Remove tui_set_win_with_focus new fc96d20b2c6 Remove the TUI annotation hack new 01b1af321f8 Allow TUI windows in Python new 432b5c40220 Make some tui_source_window_base members "protected" new ca793b969c3 Use error_no_arg in TUI new 283be8bfa4c Add "usage" text to all TUI command help new 3b0fb49e305 Fix cast in TUI_DISASM_WIN
The 24 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference.
Summary of changes: gdb/ChangeLog | 289 ++++++ gdb/Makefile.in | 1 + gdb/NEWS | 11 + gdb/doc/ChangeLog | 15 + gdb/doc/gdb.texinfo | 60 +- gdb/doc/python.texi | 105 ++ gdb/python/py-tui.c | 510 ++++++++++ gdb/python/python-internal.h | 4 + gdb/python/python.c | 10 +- gdb/testsuite/ChangeLog | 19 + .../{py-pp-re-notag.exp => tui-window.exp} | 36 +- ...{py-breakpoint-create-fail.py => tui-window.py} | 30 +- gdb/testsuite/gdb.tui/new-layout.exp | 84 ++ gdb/tui/tui-command.h | 5 +- gdb/tui/tui-data.c | 95 +- gdb/tui/tui-data.h | 115 +-- gdb/tui/tui-disasm.c | 46 +- gdb/tui/tui-disasm.h | 8 +- gdb/tui/tui-io.c | 36 +- gdb/tui/tui-layout.c | 1004 ++++++++++++-------- gdb/tui/tui-layout.h | 98 +- gdb/tui/tui-regs.c | 23 +- gdb/tui/tui-regs.h | 10 +- gdb/tui/tui-source.c | 47 +- gdb/tui/tui-source.h | 8 +- gdb/tui/tui-stack.c | 3 +- gdb/tui/tui-stack.h | 1 - gdb/tui/tui-win.c | 202 ++-- gdb/tui/tui-wingeneral.c | 9 - gdb/tui/tui-wingeneral.h | 3 - gdb/tui/tui-winsource.c | 86 +- gdb/tui/tui-winsource.h | 51 +- gdb/tui/tui.c | 68 +- gdb/tui/tui.h | 3 - 34 files changed, 2165 insertions(+), 930 deletions(-) create mode 100644 gdb/python/py-tui.c copy gdb/testsuite/gdb.python/{py-pp-re-notag.exp => tui-window.exp} (56%) copy gdb/testsuite/gdb.python/{py-breakpoint-create-fail.py => tui-window.py} (53%) create mode 100644 gdb/testsuite/gdb.tui/new-layout.exp