mirror of
https://github.com/irssi/irssi.git
synced 2026-08-09 20:00:23 +02:00
Never print the last character in screen, this may break some terminals (cygwin at least).
term_addstr() now uses const char * instead of char * parameter. git-svn-id: http://svn.irssi.org/repos/irssi/trunk@2192 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
parent
575a5a3b8b
commit
377b66745d
3 changed files with 15 additions and 7 deletions
|
|
@ -63,7 +63,7 @@ void term_set_color(TERM_WINDOW *window, int col);
|
|||
|
||||
void term_move(TERM_WINDOW *window, int x, int y);
|
||||
void term_addch(TERM_WINDOW *window, int chr);
|
||||
void term_addstr(TERM_WINDOW *window, char *str);
|
||||
void term_addstr(TERM_WINDOW *window, const char *str);
|
||||
void term_clrtoeol(TERM_WINDOW *window);
|
||||
|
||||
void term_move_cursor(int x, int y);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue