mirror of
https://github.com/irssi/irssi.git
synced 2025-02-02 15:08:01 -05:00
Remove no longer needed kludge to inhibit writing in the last cell.
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@4810 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
parent
951a0de704
commit
a6090c7f8f
@ -373,7 +373,6 @@ void term_addch(TERM_WINDOW *window, char chr)
|
|||||||
{
|
{
|
||||||
if (vcmove) term_move_real();
|
if (vcmove) term_move_real();
|
||||||
|
|
||||||
if (vcy < term_height-1 || vcx < term_width-1) {
|
|
||||||
/* With UTF-8, move cursor only if this char is either
|
/* With UTF-8, move cursor only if this char is either
|
||||||
single-byte (8. bit off) or beginning of multibyte
|
single-byte (8. bit off) or beginning of multibyte
|
||||||
(7. bit off) */
|
(7. bit off) */
|
||||||
@ -383,7 +382,6 @@ void term_addch(TERM_WINDOW *window, char chr)
|
|||||||
}
|
}
|
||||||
|
|
||||||
putc(chr, window->term->out);
|
putc(chr, window->term->out);
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static void term_addch_utf8(TERM_WINDOW *window, unichar chr)
|
static void term_addch_utf8(TERM_WINDOW *window, unichar chr)
|
||||||
@ -399,8 +397,6 @@ static void term_addch_utf8(TERM_WINDOW *window, unichar chr)
|
|||||||
void term_add_unichar(TERM_WINDOW *window, unichar chr)
|
void term_add_unichar(TERM_WINDOW *window, unichar chr)
|
||||||
{
|
{
|
||||||
if (vcmove) term_move_real();
|
if (vcmove) term_move_real();
|
||||||
if (vcy == term_height-1 && vcx == term_width-1)
|
|
||||||
return; /* last char in screen */
|
|
||||||
|
|
||||||
switch (term_type) {
|
switch (term_type) {
|
||||||
case TERM_TYPE_UTF8:
|
case TERM_TYPE_UTF8:
|
||||||
@ -431,8 +427,6 @@ void term_addstr(TERM_WINDOW *window, const char *str)
|
|||||||
len = strlen(str); /* FIXME utf8 or big5 */
|
len = strlen(str); /* FIXME utf8 or big5 */
|
||||||
term_printed_text(len);
|
term_printed_text(len);
|
||||||
|
|
||||||
if (vcy == term_height && vcx == 0)
|
|
||||||
len--;
|
|
||||||
fwrite(str, 1, len, window->term->out);
|
fwrite(str, 1, len, window->term->out);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user