1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-24 00:45:52 +00:00

This patch is no longer necessary for Pine 4.61

This commit is contained in:
Doug Barton 2004-08-09 08:51:26 +00:00
parent cdd7886570
commit e0f2f34f5d
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=115723

View File

@ -1,29 +0,0 @@
*** pine/strings.c.orig Thu May 6 10:47:29 2004
--- pine/strings.c Wed Jun 9 04:16:00 2004
***************
*** 3754,3760 ****
p = ct->table = (unsigned char *)
fs_get(256 * sizeof(unsigned char));
for(i = 0; i < 256; i++){
! unsigned char fc;
p[i] = '?';
switch(from->type){ /* get "from" UCS-2 codepoint */
case CT_1BYTE0: /* ISO 8859-1 */
--- 3754,3760 ----
p = ct->table = (unsigned char *)
fs_get(256 * sizeof(unsigned char));
for(i = 0; i < 256; i++){
! unsigned int fc;
p[i] = '?';
switch(from->type){ /* get "from" UCS-2 codepoint */
case CT_1BYTE0: /* ISO 8859-1 */
***************
*** 3789,3795 ****
}
break;
}
- p[i] = i;
}
break;
}
--- 3789,3794 ----