diff options
author | ache <ache@FreeBSD.org> | 2000-09-15 23:22:42 +0000 |
---|---|---|
committer | ache <ache@FreeBSD.org> | 2000-09-15 23:22:42 +0000 |
commit | 69ed05fa2c95284a5c3aa0fed36f3ec3134f317d (patch) | |
tree | 1610264e2e1bf7c10fc4fb87196f3d35b71cd7ab /misc | |
parent | cfebfbd54f907f631813fed70648e4971d8266dc (diff) | |
download | FreeBSD-ports-69ed05fa2c95284a5c3aa0fed36f3ec3134f317d.zip FreeBSD-ports-69ed05fa2c95284a5c3aa0fed36f3ec3134f317d.tar.gz |
Workaround buggy ncurses tgoto emulation which affects pseudographics
Diffstat (limited to 'misc')
-rw-r--r-- | misc/screen/files/patch-af | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/misc/screen/files/patch-af b/misc/screen/files/patch-af new file mode 100644 index 0000000..9b9c678 --- /dev/null +++ b/misc/screen/files/patch-af @@ -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"; |