From 7b95eee94acb51441ea71ccb3e6af8e8bd5a966d Mon Sep 17 00:00:00 2001 From: Roland Illig Date: Thu, 1 Sep 2005 17:04:05 +0000 Subject: [PATCH] Added a comment that the user is responsible for not overflowing the screen. --- src/tty.h | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/tty.h b/src/tty.h index b9aff4ba3..59d74be55 100644 --- a/src/tty.h +++ b/src/tty.h @@ -28,6 +28,13 @@ extern void tty_disable_interrupt_key(void); extern gboolean tty_got_interrupt(void); /* Output */ + +/* + The output functions do not check themselves for screen overflows, + so make sure that you never write more than what fits on the screen. + While SLang provides such a feature, ncurses does not. + */ + extern void tty_gotoyx(int, int); extern void tty_getyx(int *, int *); extern void tty_print_char(int);