mirror of
https://github.com/irssi/irssi.git
synced 2024-12-04 14:46:39 -05:00
Revert r4352.
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@4444 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
parent
d701ef4024
commit
ace371b2a3
1
NEWS
1
NEWS
@ -36,7 +36,6 @@ v0.8.11 200x-xx-xx The Irssi team <staff@irssi.org>
|
|||||||
- Don't get confused by a join command with too many arguments, keys
|
- Don't get confused by a join command with too many arguments, keys
|
||||||
can't have spaces in them (Bug 437)
|
can't have spaces in them (Bug 437)
|
||||||
- Don't crash on /QUIT with scripts causing and catching signals on UNLOAD
|
- Don't crash on /QUIT with scripts causing and catching signals on UNLOAD
|
||||||
- Fix off-by-one error in gui_entry_draw_from
|
|
||||||
- Fix %k and %K mappings in curses frontend
|
- Fix %k and %K mappings in curses frontend
|
||||||
- Fix bold on monochrome terminals in terminfo frontend
|
- Fix bold on monochrome terminals in terminfo frontend
|
||||||
- Fixed colors with TERM=xterm-{88,256}color in terminfo frontend
|
- Fixed colors with TERM=xterm-{88,256}color in terminfo frontend
|
||||||
|
@ -242,7 +242,7 @@ static void gui_entry_draw_from(GUI_ENTRY_REC *entry, int pos)
|
|||||||
}
|
}
|
||||||
|
|
||||||
/* clear the rest of the input line */
|
/* clear the rest of the input line */
|
||||||
if (end_xpos == term_width-1)
|
if (end_xpos == term_width)
|
||||||
term_clrtoeol(root_window);
|
term_clrtoeol(root_window);
|
||||||
else {
|
else {
|
||||||
while (xpos < end_xpos) {
|
while (xpos < end_xpos) {
|
||||||
|
Loading…
Reference in New Issue
Block a user