diff options
author | Cy Schubert <cy@FreeBSD.org> | 2014-04-30 04:22:34 +0000 |
---|---|---|
committer | Cy Schubert <cy@FreeBSD.org> | 2014-04-30 04:22:34 +0000 |
commit | b55f1ca0fbe6f289b7e22b4b0370714b90f154ef (patch) | |
tree | 41acca650b9b19788e148e639378ff3493730f12 /sysutils/screen/files/patch-tty.sh | |
parent | Prepare for screen 4.2.1. Screen 4.0.3 becomes screen-legacy. (diff) |
Update screen 4.0.3 --> 4.2.1.
Put final touches onto screen-legacy.
Notes
Notes:
svn path=/head/; revision=352669
Diffstat (limited to 'sysutils/screen/files/patch-tty.sh')
-rw-r--r-- | sysutils/screen/files/patch-tty.sh | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/sysutils/screen/files/patch-tty.sh b/sysutils/screen/files/patch-tty.sh deleted file mode 100644 index 1b40f3c939fd..000000000000 --- a/sysutils/screen/files/patch-tty.sh +++ /dev/null @@ -1,22 +0,0 @@ ---- tty.sh -+++ tty.sh -@@ -76,7 +76,7 @@ - #endif - - #include "config.h" --#ifdef SVR4 -+#if defined(SVR4) && !defined(__FreeBSD__) - #include <sys/stropts.h> /* for I_POP */ - #endif - -@@ -562,7 +562,9 @@ - XIF{VLNEXT} np->tio.c_cc[VLNEXT] = VDISABLE; - XIF{VSTATUS} np->tio.c_cc[VSTATUS] = VDISABLE; - XIF{VSUSP} np->tio.c_cc[VSUSP] = VDISABLE; --XIF{VERASE} np->tio.c_cc[VERASE] = VDISABLE; -+ /* Set VERASE to DEL, rather than VDISABLE, to avoid libvte -+ "autodetect" issues. */ -+XIF{VERASE} np->tio.c_cc[VERASE] = 0x7f; - XIF{VKILL} np->tio.c_cc[VKILL] = VDISABLE; - # ifdef HPUX_LTCHARS_HACK - np->m_ltchars.t_suspc = VDISABLE; |