ports/sysutils/screen/files/patch-screen.c
Cy Schubert 46343a65a8 Fix colour in hardstatus when color between two %= (GNU screen bug #42247).
Options CJK and HOSTINLOCKED are in the base screen, remove them.
2014-05-01 06:54:47 +00:00

20 lines
528 B
C

--- screen.c.orig 2014-04-26 09:22:09.000000000 -0700
+++ screen.c 2014-04-30 23:34:47.613803805 -0700
@@ -2257,7 +2257,7 @@
r = winmsg_numrend;
while (p >= buf)
{
- if (r && *p != 127 && p - buf == winmsg_rendpos[r - 1])
+ if (r && p - buf == winmsg_rendpos[r - 1])
{
winmsg_rendpos[--r] = pn - buf;
continue;
@@ -2271,8 +2271,6 @@
while (i-- > 0)
*pn-- = ' ';
numpad--;
- if (r && p - buf == winmsg_rendpos[r - 1])
- winmsg_rendpos[--r] = pn - buf;
}
}
return pn2;