History log of /netbsd/lib/libcurses/fileio.c (Results 1 – 9 of 9)
Revision Date Author Comments
# 072cbdc1 07-Sep-2021 rin <rin@NetBSD.org>

Do not compile in whole fileio.c for LIBHACK.

Fix build failure when built as libhack, due to missing fileio.h.

IMO, this should be cleaner than generating fileio.h for {get,put}win(3),
that are us

Do not compile in whole fileio.c for LIBHACK.

Fix build failure when built as libhack, due to missing fileio.h.

IMO, this should be cleaner than generating fileio.h for {get,put}win(3),
that are useless for install media.

show more ...


# dd26fe31 06-Sep-2021 rin <rin@NetBSD.org>

Expand __CTRACE() to __nothing #ifndef DEBUG.

Remove most of #ifdef DEBUG around __CTRACE() calls.

No binary changes, except for line numbers for assert().


# 0ead1e8c 24-Feb-2020 rin <rin@NetBSD.org>

0x%p --> %p for non-external codes.


# a28da416 02-Oct-2018 roy <roy@NetBSD.org>

curses: fix ripoffline

When creating stdscr, ensure it's placed and sized in accordance with
lines ripped off.
LINES is no longer adjusted for lines ripped off.
POSIX makes no mention that it should

curses: fix ripoffline

When creating stdscr, ensure it's placed and sized in accordance with
lines ripped off.
LINES is no longer adjusted for lines ripped off.
POSIX makes no mention that it should be adjusted.
Bottom lines are now placed correctly.
Lines ripped off are now displayed after calling initscr.

ok kamil@

Fixes PR #53635

show more ...


# 7e6be028 22-Oct-2016 christos <christos@NetBSD.org>

remove bogus malloc casts


# 43d5eb45 22-Jul-2009 roy <roy@NetBSD.org>

Prepare curses for the possibility of changing from termcap to terminfo.
term.h #defines lines, pad_char and no_color_video macros which conflict
with existing curses code. We change lines to alines

Prepare curses for the possibility of changing from termcap to terminfo.
term.h #defines lines, pad_char and no_color_video macros which conflict
with existing curses code. We change lines to alines and nlines depending
on use, pad_char to padchar and no_color_video becomes no_color_attributes
but with a strong alias from no_color_video.

show more ...


# ea988594 24-May-2008 christos <christos@NetBSD.org>

Coverity CID 5024: Fix double free on error path.


# ca37ecd7 02-May-2008 martin <martin@NetBSD.org>

Move to 2 clause TNF license (was: strange 3 clause version)


# 4c71b79a 14-Apr-2008 jdc <jdc@NetBSD.org>

File IO functions getwin() and putwin().
Should fix PR lib/24928.