summaryrefslogtreecommitdiff
path: root/editors/dedit/files/patch-src-jcode.c
diff options
context:
space:
mode:
authorBaptiste Daroussin <bapt@FreeBSD.org>2011-05-02 09:33:54 +0000
committerBaptiste Daroussin <bapt@FreeBSD.org>2011-05-02 09:33:54 +0000
commit4d34305a69677964af6498c03bc1df8c8bd0eca5 (patch)
tree159c18a041bdda0f9c3718efc741e7f3186b2f01 /editors/dedit/files/patch-src-jcode.c
parentRemove unmaintained expired nvi related ports (diff)
Remove unmaintained expired ports from editors
2011-05-01 editors/MathPlanner: Upstream says project is canceled and no more distfiles can be found 2011-05-01 editors/bitmap: Upstream disapear and distfile is no more available 2011-05-01 editors/bitmap-emacs21: Upstream disapear and distfile is no more available 2011-05-01 editors/cle: Upstream disapear and distfile is no more available 2011-05-01 editors/dedit: Upstream disapear and distfile is no more available 2011-05-01 editors/em: Upstream disapear and distfile is no more available 2011-05-01 editors/leim21: Distfile is no more available 2011-05-01 editors/lpe: Upstream disapear and distfile is no more available 2011-05-01 editors/vilearn: Upstream disapear and distfile is no more available 2011-05-01 editors/xenon: Upstream disapear and distfile is no more available
Notes
Notes: svn path=/head/; revision=273467
Diffstat (limited to 'editors/dedit/files/patch-src-jcode.c')
-rw-r--r--editors/dedit/files/patch-src-jcode.c46
1 files changed, 0 insertions, 46 deletions
diff --git a/editors/dedit/files/patch-src-jcode.c b/editors/dedit/files/patch-src-jcode.c
deleted file mode 100644
index 5099cf326c38..000000000000
--- a/editors/dedit/files/patch-src-jcode.c
+++ /dev/null
@@ -1,46 +0,0 @@
---- src/jcode.c.orig 2000-10-13 08:45:02.000000000 +0200
-+++ src/jcode.c 2007-11-04 00:49:09.000000000 +0100
-@@ -251,7 +251,7 @@
- char *
- kanji_conv_auto(char *str, const char *dstset)
- {
-- unsigned char *buf, *ret;
-+ char *buf, *ret;
- iconv_t cd;
- size_t insize = 0;
- size_t outsize = 0;
-@@ -278,7 +278,7 @@
- break;
- }
-
-- buf = (unsigned char *)malloc(strlen(str)* 4 + 1);
-+ buf = malloc(strlen(str)* 4 + 1);
- if(!buf)
- return NULL;
-
-@@ -315,7 +315,6 @@
- {
- static char *jpcode = NULL;
- static char *locale_euc[] = { JCODE_LOCALE_EUC, NULL };
-- static char *locale_jis[] = { JCODE_LOCALE_JIS, NULL };
- static char *locale_sjis[] = { JCODE_LOCALE_SJIS, NULL };
-
- static struct LOCALE_TABLE {
-@@ -352,7 +351,7 @@
- char *
- kanji_conv(char *str, const char *dstset, const char *srcset)
- {
-- unsigned char *buf, *ret;
-+ char *buf, *ret;
- iconv_t cd;
- size_t insize = 0;
- size_t outsize = 0;
-@@ -363,7 +362,7 @@
- if(!str)
- return NULL;
-
-- buf = (unsigned char *)malloc(strlen(str) * 4 + 1);
-+ buf = malloc(strlen(str) * 4 + 1);
- if(!buf)
- return NULL;
-