[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Display problems
From: |
Thomas E. Dickey |
Subject: |
Re: Display problems |
Date: |
Thu, 24 Jan 2002 05:52:59 -0500 (EST) |
On Wed, 23 Jan 2002, Ben Kohlen wrote:
> Ah! I am enlightened. Thank you, very much. I am
> surprised, however, that the refresh() in getch() is
> carried out even after a noecho().
It's something separate: noecho() tells curses to not print the characters
that you enter with getch(), but the refresh() is done simply because
that's a good place to stop and see that the screen is up-to-date. In
BSD curses, you would have to add refresh() calls to get the same effect.
--
T.E.Dickey <address@hidden>
http://invisible-island.net
ftp://invisible-island.net
- Re: Display problems, (continued)