diff options
author | Andrey A. Chernov <ache@FreeBSD.org> | 2000-09-15 23:22:42 +0000 |
---|---|---|
committer | Andrey A. Chernov <ache@FreeBSD.org> | 2000-09-15 23:22:42 +0000 |
commit | cc0d357fe0cdcd536accae66e7e8d816eab293a7 (patch) | |
tree | d522116deb54b9919ac3715eb12f5248cca6f7b9 /sysutils/screen | |
parent | Add MTREE_FILE definition, this port is happier with BSD.x11-4.dist. (diff) |
Workaround buggy ncurses tgoto emulation which affects pseudographics
Diffstat (limited to 'sysutils/screen')
-rw-r--r-- | sysutils/screen/files/patch-af | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/sysutils/screen/files/patch-af b/sysutils/screen/files/patch-af new file mode 100644 index 000000000000..9b9c6789c97d --- /dev/null +++ b/sysutils/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"; |