History log of /netbsd/lib/libcurses/instr.c (Results 1 – 8 of 8)
Revision Date Author Comments
# 165f4767 15-Aug-2021 rillig <rillig@NetBSD.org>

libcurses: fix usage of __warn_references

Since that macro can expand to an empty token list, it adds its own
semicolon as needed. Removing the extra semicolon fixes the lint
warnings about empty d

libcurses: fix usage of __warn_references

Since that macro can expand to an empty token list, it adds its own
semicolon as needed. Removing the extra semicolon fixes the lint
warnings about empty declarations. These empty declarations are a GCC
extension.

show more ...


# a5d2c93a 09-Jun-2019 blymn <blymn@NetBSD.org>

Rework previous fix for getch cursor position when cursor is moved
without refresh. If the window is not dirty but the window cursor
position does not match curscr then move the cursor. This fixes

Rework previous fix for getch cursor position when cursor is moved
without refresh. If the window is not dirty but the window cursor
position does not match curscr then move the cursor. This fixes
the issues seen in PR lib/54263.

show more ...


# 5bb367be 20-May-2019 blymn <blymn@NetBSD.org>

Back out incorrect fix for PR 53617 and fix it in a different way.
Keep track of the cursor location, if getch is called without a refresh
and without pending updates (dirty windows) then move the cu

Back out incorrect fix for PR 53617 and fix it in a different way.
Keep track of the cursor location, if getch is called without a refresh
and without pending updates (dirty windows) then move the cursor to the
correct location directly. Doing this prevents unnecessary refreshes.

show more ...


# 079eba9d 24-Feb-2019 roy <roy@NetBSD.org>

Fix warn macro usage.

Thanks to rofl0r.


# 473cb887 07-Aug-2011 blymn <blymn@NetBSD.org>

Fix a bug that prevented instr and friends returning OK.


# 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 ...


# ef592783 02-Jan-2002 blymn <blymn@NetBSD.org>

Remove extraneous tabs from blank lines.


# e6fa1cbf 01-Jan-2001 simonb <simonb@NetBSD.org>

Add the instr and inchstr families of functions.