/SET force_colors -> /SET term_force_colors. Added /SET term_scroll_fast

option to specify if we want to scroll with fastest method, or the cleanest
method. The default is cleanest and it looks best with xterm, with some
other terminals where line-by-line scroll is slow, you might want to use the
fast scrolling.


git-svn-id: http://svn.irssi.org/repos/irssi/trunk@2015 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
Timo Sirainen 2001-11-15 00:52:35 +00:00 committed by cras
commit 4d771c54d9
6 changed files with 57 additions and 11 deletions

View file

@ -193,6 +193,13 @@ void term_force_colors(int set)
/* don't do anything with curses */
}
/* Setup scrolling - if fast is TRUE, we'll use the fastest method to
scroll, if it's FALSE, we'll use the one that looks cleanest. */
void term_setup_scroll(int fast)
{
/* don't do anything with curses */
}
/* Clear screen */
void term_clear(void)
{