summaryrefslogtreecommitdiff
path: root/graphics/gd2/files/patch-gdttf.c
diff options
context:
space:
mode:
authorcvs2svn <cvs2svn@FreeBSD.org>2001-04-18 21:37:32 +0000
committercvs2svn <cvs2svn@FreeBSD.org>2001-04-18 21:37:32 +0000
commit01a9f79f0a3692d8148990805beabc8593d3596d (patch)
tree99d1ef5788fc9e55b6948a7d4951ac4a315f63bf /graphics/gd2/files/patch-gdttf.c
parentNew index, rebuilt due to samba changes. (Gee, how many things (diff)
This commit was manufactured by cvs2svn to create tag 'RELEASE_4_3_0'.release/4.3.0
Diffstat (limited to 'graphics/gd2/files/patch-gdttf.c')
-rw-r--r--graphics/gd2/files/patch-gdttf.c17
1 files changed, 0 insertions, 17 deletions
diff --git a/graphics/gd2/files/patch-gdttf.c b/graphics/gd2/files/patch-gdttf.c
deleted file mode 100644
index c7b8768a725f..000000000000
--- a/graphics/gd2/files/patch-gdttf.c
+++ /dev/null
@@ -1,17 +0,0 @@
---- gdttf.c.orig Fri Feb 2 05:23:56 2001
-+++ gdttf.c Wed Feb 7 20:57:34 2001
-@@ -221,11 +221,10 @@
- byte = *((unsigned char *) str);
- #ifdef JISX0208
- if (0xA1 <= byte && byte <= 0xFE) {
-- int jiscode, ku, ten;
-+ int ku, ten;
-
-- jiscode = 0x100 * (byte & 0x7F) + (str[1] & 0x7F);
-- ku = (jiscode >> 8) - 0x20;
-- ten = (jiscode % 256) - 0x20;
-+ ku = (byte & 0x7F) - 0x20;
-+ ten = (str[1] & 0x7F) - 0x20;
- if ( (ku < 1 || ku > 92) || (ten < 1 || ten > 94) ) {
- *chPtr = (Tcl_UniChar) byte;
- return 1;