| d3d72007 | 11-Sep-2020 |
Matthew Dillon <dillon@apollo.backplane.com> |
terminfo: drop repeat-character capability from 'xterm-new' (2)
* Drop all use cases, output is mis-generated in some situations (LANG and LC_CTYPE envs both unset, vi (nvi) a file with 0x0000000
terminfo: drop repeat-character capability from 'xterm-new' (2)
* Drop all use cases, output is mis-generated in some situations (LANG and LC_CTYPE envs both unset, vi (nvi) a file with 0x0000000 sequences in it).
Frankly, its beyond stupid to even implement ansi sequences that were designed for an era of 1200 baud modems.
* Add comment describing why ansi+rep was removed.
show more ...
|
| 099e0945 | 11-Sep-2020 |
Daniel Fojt <df@neosystem.org> |
terminfo: drop repeat-character capability from 'xterm-new'
Remove ANSI capability 'rep' from xterm-new entry as it's causing misbehaviour (at least) in nvi2 editor from base.
Reported by: Matthew
terminfo: drop repeat-character capability from 'xterm-new'
Remove ANSI capability 'rep' from xterm-new entry as it's causing misbehaviour (at least) in nvi2 editor from base.
Reported by: Matthew Dillon
show more ...
|
| e02a905d | 25-Sep-2016 |
zrj <rimvydas.jasinskas@gmail.com> |
libncurses: Avoid warning when calling cgetent().
Since both read_termcap.c static version of cgetent() and cgetent(3) has second argument as char** just use __DECONST() trick so to not have big cha
libncurses: Avoid warning when calling cgetent().
Since both read_termcap.c static version of cgetent() and cgetent(3) has second argument as char** just use __DECONST() trick so to not have big changes. It should be safe to do that, base libncurses is a private library now.
show more ...
|
| 09598512 | 25-Sep-2016 |
zrj <rimvydas.jasinskas@gmail.com> |
libncurses: Avoid -Woverflow in baud rates.
NCURSES_OSPEED has type - short so anything >= B38400 overflows. Since changing NCURSES_OSPEED to use int is an ABI change and given that overflown values
libncurses: Avoid -Woverflow in baud rates.
NCURSES_OSPEED has type - short so anything >= B38400 overflows. Since changing NCURSES_OSPEED to use int is an ABI change and given that overflown values are still unique and only used as identifiers there is nothing wrong by explictly casting it to used type.
show more ...
|
| 3ac91e86 | 14-May-2012 |
John Marino <draco@marino.st> |
ncurses: move USE_GETCAP, update README files
The ncurses headers were generated with additional configuration switches documented on README.DRAGONFLY. One outcome is the USE_GETCAP should be in th
ncurses: move USE_GETCAP, update README files
The ncurses headers were generated with additional configuration switches documented on README.DRAGONFLY. One outcome is the USE_GETCAP should be in the configuration header rather than in the Makefile, so that was updated.
New files were imported to support building the terminfo database, and the path for that will be /usr/share/terminfo. Accordingly, the man page and configuration header have been updated.
show more ...
|