1
0
mirror of https://github.com/irssi/irssi.git synced 2024-09-01 04:14:16 -04:00

Simplify.

git-svn-id: http://svn.irssi.org/repos/irssi/trunk@4808 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
Emanuele Giaquinta 2008-04-20 10:27:32 +00:00 committed by exg
parent 0957ac5dfe
commit eb6ee3136f

View File

@ -431,10 +431,9 @@ void term_addstr(TERM_WINDOW *window, const char *str)
len = strlen(str); /* FIXME utf8 or big5 */
term_printed_text(len);
if (vcy != term_height || vcx != 0)
fputs(str, window->term->out);
else
fwrite(str, 1, len-1, window->term->out);
if (vcy == term_height && vcx == 0)
len--;
fwrite(str, 1, len, window->term->out);
}
void term_clrtoeol(TERM_WINDOW *window)