NetBSD/lib/libcurses
alm 75de25bb93 added Andrew Chernov's patch set:
Standard curses library use eight bit for standout mode, so
8-bit characters displays like highlighted 7-bit characters.

This patch produce library which is fully compatible with all curses
programs and add 8-bit chars to all input/display functions.
---
I don't think, that any programs wish to use internal curses
attribute _STANDOUT directly, in expressions like:
        addch( ch | _STANDOUT );
        Normal interface use standout() and standend() functions instead.
        Many programs use 'char' type (with sign extention) for input characters
        and sign extention becomes _STANDOUT mode in this case.
        So, I refuse this future and allow 8-bit characters for programs,
        which is designed for 7-bit only ('char' type using instead of
        'unsigned char').
---
This small patch fix unpleasant standard curses bug:
curses can't expand TAB at all (but tries).
A man who wrote this curses misplace SYNC_IN and SYNCH_OUT,
this patch exchange macro calls.

This patch useful for standard 7-bit curses too, for this
you must delete '_' symbol before waddbytes and apply patch.
---
Oh, NO! This curses are really buggy!

This small patch fix following problem:
[ assumed scrollok(stdscr, TRUE) ]
when addch(ch) at lower right corner of screen, curses are realy
gone mad instead if simple scrolling... Curses code assumed that
this will be done correctly, but implement it with two bugs.
1993-07-09 05:34:14 +00:00
..
Makefile initial import of 386bsd-0.1 sources 1993-03-21 09:45:37 +00:00
addbytes.c added Andrew Chernov's patch set: 1993-07-09 05:34:14 +00:00
addch.c added Andrew Chernov's patch set: 1993-07-09 05:34:14 +00:00
addstr.c added Andrew Chernov's patch set: 1993-07-09 05:34:14 +00:00
box.c added Andrew Chernov's patch set: 1993-07-09 05:34:14 +00:00
clear.c initial import of 386bsd-0.1 sources 1993-03-21 09:45:37 +00:00
clrtobot.c added Andrew Chernov's patch set: 1993-07-09 05:34:14 +00:00
clrtoeol.c added Andrew Chernov's patch set: 1993-07-09 05:34:14 +00:00
cr_put.c added Andrew Chernov's patch set: 1993-07-09 05:34:14 +00:00
cr_tty.c initial import of 386bsd-0.1 sources 1993-03-21 09:45:37 +00:00
curses.3 initial import of 386bsd-0.1 sources 1993-03-21 09:45:37 +00:00
curses.c initial import of 386bsd-0.1 sources 1993-03-21 09:45:37 +00:00
curses.ext initial import of 386bsd-0.1 sources 1993-03-21 09:45:37 +00:00
curses.h added Andrew Chernov's patch set: 1993-07-09 05:34:14 +00:00
delch.c added Andrew Chernov's patch set: 1993-07-09 05:34:14 +00:00
deleteln.c added Andrew Chernov's patch set: 1993-07-09 05:34:14 +00:00
delwin.c initial import of 386bsd-0.1 sources 1993-03-21 09:45:37 +00:00
endwin.c initial import of 386bsd-0.1 sources 1993-03-21 09:45:37 +00:00
erase.c added Andrew Chernov's patch set: 1993-07-09 05:34:14 +00:00
fullname.c initial import of 386bsd-0.1 sources 1993-03-21 09:45:37 +00:00
getch.c added Andrew Chernov's patch set: 1993-07-09 05:34:14 +00:00
getstr.c added Andrew Chernov's patch set: 1993-07-09 05:34:14 +00:00
id_subwins.c initial import of 386bsd-0.1 sources 1993-03-21 09:45:37 +00:00
idlok.c initial import of 386bsd-0.1 sources 1993-03-21 09:45:37 +00:00
initscr.c initial import of 386bsd-0.1 sources 1993-03-21 09:45:37 +00:00
insch.c added Andrew Chernov's patch set: 1993-07-09 05:34:14 +00:00
insertln.c added Andrew Chernov's patch set: 1993-07-09 05:34:14 +00:00
longname.c initial import of 386bsd-0.1 sources 1993-03-21 09:45:37 +00:00
move.c initial import of 386bsd-0.1 sources 1993-03-21 09:45:37 +00:00
mvprintw.c initial import of 386bsd-0.1 sources 1993-03-21 09:45:37 +00:00
mvscanw.c initial import of 386bsd-0.1 sources 1993-03-21 09:45:37 +00:00
mvwin.c initial import of 386bsd-0.1 sources 1993-03-21 09:45:37 +00:00
newwin.c added Andrew Chernov's patch set: 1993-07-09 05:34:14 +00:00
overlay.c added Andrew Chernov's patch set: 1993-07-09 05:34:14 +00:00
overwrite.c added Andrew Chernov's patch set: 1993-07-09 05:34:14 +00:00
printw.c added Andrew Chernov's patch set: 1993-07-09 05:34:14 +00:00
putchar.c initial import of 386bsd-0.1 sources 1993-03-21 09:45:37 +00:00
refresh.c added Andrew Chernov's patch set: 1993-07-09 05:34:14 +00:00
scanw.c initial import of 386bsd-0.1 sources 1993-03-21 09:45:37 +00:00
scroll.c initial import of 386bsd-0.1 sources 1993-03-21 09:45:37 +00:00
standout.c initial import of 386bsd-0.1 sources 1993-03-21 09:45:37 +00:00
toucholap.c initial import of 386bsd-0.1 sources 1993-03-21 09:45:37 +00:00
touchwin.c initial import of 386bsd-0.1 sources 1993-03-21 09:45:37 +00:00
tstp.c initial import of 386bsd-0.1 sources 1993-03-21 09:45:37 +00:00
unctrl.c initial import of 386bsd-0.1 sources 1993-03-21 09:45:37 +00:00