Workaround buggy ncurses tgoto emulation which affects pseudographics

This commit is contained in:
Andrey A. Chernov 2000-09-15 23:22:42 +00:00
parent 99467bd40f
commit cc0d357fe0
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=32663
2 changed files with 22 additions and 0 deletions

View File

@ -0,0 +1,11 @@
--- termcap.c.bak Wed Jul 5 16:33:30 2000
+++ termcap.c Sat Sep 16 03:13:26 2000
@@ -358,7 +358,7 @@
#ifdef TERMINFO
D_CS0 = "\033(%p1%c";
#else
- D_CS0 = "\033(%.";
+ D_CS0 = "\033(%c"; /* THIS IS NCURSES BUG, MUST BE %. */
#endif
if (D_CE0 == 0)
D_CE0 = "\033(B";

View File

@ -0,0 +1,11 @@
--- termcap.c.bak Wed Jul 5 16:33:30 2000
+++ termcap.c Sat Sep 16 03:13:26 2000
@@ -358,7 +358,7 @@
#ifdef TERMINFO
D_CS0 = "\033(%p1%c";
#else
- D_CS0 = "\033(%.";
+ D_CS0 = "\033(%c"; /* THIS IS NCURSES BUG, MUST BE %. */
#endif
if (D_CE0 == 0)
D_CE0 = "\033(B";