mirror of
https://github.com/irssi/irssi.git
synced 2026-08-10 20:33:46 +02:00
Added support for using terminfo/termcap instead of curses. By default,
configure chooses to use ncurses if found, of terminfo if only curses was found. --with-terminfo parameter can be used to specify if you want it or not. git-svn-id: http://svn.irssi.org/repos/irssi/trunk@1924 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
parent
8567481fd0
commit
2ba339a26b
30 changed files with 2662 additions and 268 deletions
|
|
@ -38,7 +38,7 @@ static void window_lastlog_clear(WINDOW_REC *window)
|
|||
TEXT_BUFFER_VIEW_REC *view;
|
||||
LINE_REC *line, *next;
|
||||
|
||||
screen_refresh_freeze();
|
||||
term_refresh_freeze();
|
||||
view = WINDOW_GUI(window)->view;
|
||||
line = textbuffer_view_get_lines(view);
|
||||
|
||||
|
|
@ -50,7 +50,7 @@ static void window_lastlog_clear(WINDOW_REC *window)
|
|||
line = next;
|
||||
}
|
||||
textbuffer_view_redraw(view);
|
||||
screen_refresh_thaw();
|
||||
term_refresh_thaw();
|
||||
}
|
||||
|
||||
/* Only unknown keys in `optlist' should be levels.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue