diff options
author | Andrey A. Chernov <ache@FreeBSD.org> | 2000-09-16 07:22:42 +0800 |
---|---|---|
committer | Andrey A. Chernov <ache@FreeBSD.org> | 2000-09-16 07:22:42 +0800 |
commit | cc0d357fe0cdcd536accae66e7e8d816eab293a7 (patch) | |
tree | d522116deb54b9919ac3715eb12f5248cca6f7b9 /misc | |
parent | 99467bd40fbb0a9fd33cbacf112b7703c38bacc2 (diff) | |
download | freebsd-ports-gnome-cc0d357fe0cdcd536accae66e7e8d816eab293a7.tar.gz freebsd-ports-gnome-cc0d357fe0cdcd536accae66e7e8d816eab293a7.tar.zst freebsd-ports-gnome-cc0d357fe0cdcd536accae66e7e8d816eab293a7.zip |
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 000000000000..9b9c6789c97d --- /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"; |