aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHannes Domani <ssbssa@yahoo.de>2020-11-22 16:51:30 +0100
committerHannes Domani <ssbssa@yahoo.de>2021-05-27 20:42:42 +0200
commitbdef5723041368f3e264ac641360950c936b7ce4 (patch)
tree4fc4cc2d4b9acad73aed736b358a1c350b027fd4 /gdb/doc/ChangeLog
parentgdb: add option to reverse order of _initialize function calls (diff)
downloadbinutils-gdb-bdef5723041368f3e264ac641360950c936b7ce4.tar.gz
binutils-gdb-bdef5723041368f3e264ac641360950c936b7ce4.tar.bz2
binutils-gdb-bdef5723041368f3e264ac641360950c936b7ce4.zip
Add optional full_window argument to TuiWindow.write
To prevent flickering when first calling erase, then write, this new argument indicates that the passed string contains the full contents of the window. This fills every unused cell of the window with a space, so it's not necessary to call erase beforehand. gdb/ChangeLog: 2021-05-27 Hannes Domani <ssbssa@yahoo.de> * python/py-tui.c (tui_py_window::output): Add full_window argument. (gdbpy_tui_write): Parse "full_window" argument. gdb/doc/ChangeLog: 2021-05-27 Hannes Domani <ssbssa@yahoo.de> * python.texi (TUI Windows In Python): Document "full_window" argument.
Diffstat (limited to 'gdb/doc/ChangeLog')
-rw-r--r--gdb/doc/ChangeLog5
1 files changed, 5 insertions, 0 deletions
diff --git a/gdb/doc/ChangeLog b/gdb/doc/ChangeLog
index 51503a71424..2743079e93e 100644
--- a/gdb/doc/ChangeLog
+++ b/gdb/doc/ChangeLog
@@ -1,5 +1,10 @@
2021-05-27 Hannes Domani <ssbssa@yahoo.de>
+ * python.texi (TUI Windows In Python): Document "full_window"
+ argument.
+
+2021-05-27 Hannes Domani <ssbssa@yahoo.de>
+
* python.texi (Symbols In Python): Document gdb.SYMBOL_LOC_LABEL.
2021-05-25 Hannes Domani <ssbssa@yahoo.de>