1
0
mirror of https://github.com/irssi/irssi.git synced 2024-10-13 05:03:45 -04:00

Fix off-by-one error.

git-svn-id: http://svn.irssi.org/repos/irssi/trunk@4352 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
Emanuele Giaquinta 2006-09-17 12:26:04 +00:00 committed by exg
parent 07be2f048d
commit 8264b65939

View File

@ -242,7 +242,7 @@ static void gui_entry_draw_from(GUI_ENTRY_REC *entry, int pos)
}
/* clear the rest of the input line */
if (end_xpos == term_width)
if (end_xpos == term_width-1)
term_clrtoeol(root_window);
else {
while (xpos < end_xpos) {