summaryrefslogtreecommitdiff
path: root/package/screen/patches/patch-ansi_c
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2010-04-04 10:34:02 +0200
committerWaldemar Brodkorb <wbx@openadk.org>2010-04-04 10:34:02 +0200
commit5042ac8e5927d0089d3902b1c37e5bcc1565d053 (patch)
treecd2be3085808c5ac59dd70f9c610c6a40bfe3ffd /package/screen/patches/patch-ansi_c
parent401dabf66529cfb5ab47b4c78d5e25fd493eef1f (diff)
parent4d569ed1a3305c7b7abe8fa4273cea3b559cc85a (diff)
Merge branch 'master' of git+ssh://openadk.org/git/openadk
Conflicts: BUGS package/autoconf/Makefile
Diffstat (limited to 'package/screen/patches/patch-ansi_c')
-rw-r--r--package/screen/patches/patch-ansi_c32
1 files changed, 0 insertions, 32 deletions
diff --git a/package/screen/patches/patch-ansi_c b/package/screen/patches/patch-ansi_c
deleted file mode 100644
index f6da58abe..000000000
--- a/package/screen/patches/patch-ansi_c
+++ /dev/null
@@ -1,32 +0,0 @@
-$Id: update-patches 24 2008-08-31 14:56:13Z wbx $
---- screen-4.0.3.orig/ansi.c 2003-12-05 14:57:05.000000000 +0100
-+++ screen-4.0.3/ansi.c 2008-12-08 04:59:17.000000000 +0100
-@@ -1462,7 +1462,7 @@ StringEnd()
- switch (curr->w_StringType)
- {
- case OSC: /* special xterm compatibility hack */
-- if (curr->w_string[0] == ';' || (p = index(curr->w_string, ';')) == 0)
-+ if (curr->w_string[0] == ';' || (p = strchr(curr->w_string, ';')) == 0)
- break;
- typ = atoi(curr->w_string);
- p++;
-@@ -2803,15 +2803,15 @@ int ys, ye;
- debug2("MFindUsedLine: %d %d\n", ye, ys);
- for (y = ye; y >= ys; y--, ml--)
- {
-- if (bcmp((char*)ml->image, blank, p->w_width))
-+ if (memcmp((char*)ml->image, blank, p->w_width))
- break;
-- if (ml->attr != null && bcmp((char*)ml->attr, null, p->w_width))
-+ if (ml->attr != null && memcmp((char*)ml->attr, null, p->w_width))
- break;
- #ifdef COLOR
-- if (ml->color != null && bcmp((char*)ml->color, null, p->w_width))
-+ if (ml->color != null && memcmp((char*)ml->color, null, p->w_width))
- break;
- # ifdef COLORS256
-- if (ml->colorx != null && bcmp((char*)ml->colorx, null, p->w_width))
-+ if (ml->colorx != null && memcmp((char*)ml->colorx, null, p->w_width))
- break;
- # endif
- #endif