Use tui_putc to output newline entered by the user
authorPatrick Palka <patrick@parcs.ath.cx>
Fri, 21 Aug 2015 16:04:25 +0000 (12:04 -0400)
committerPatrick Palka <patrick@parcs.ath.cx>
Fri, 21 Aug 2015 20:17:52 +0000 (16:17 -0400)
commit7a8bcb88e77380fe9672b4f10777cc9e48011dd4
treec293e06ce7f247a0fee1b5fd90ddf8ccc9ac26da
parent465a859e0a991d3bfe8a9ee65a29a223c42e2ce7
Use tui_putc to output newline entered by the user

This is necessary to make sure that start_line is updated after a
command has been entered.  Usually, start_line gets updated anyway
because most commands output text, and outputting text is done through
the function tui_puts, which updates start_line.  However if a command
does not output text, then tui_puts will not get called and start_line
will not get updated in time for the next prompt to be displayed.

One can observe this bug by executing the command "delete" within TUI.
After executing, the prompt line

  (gdb) delete

gets overwritten by the next prompt.  With this patch, the prompt line
gets preserved.

gdb/ChangeLog:

* tui/tui-io.c (tui_getc): Use tui_putc instead of waddch to
emit the newline.
gdb/ChangeLog
gdb/tui/tui-io.c
This page took 0.027134 seconds and 4 git commands to generate.