summaryrefslogtreecommitdiff
path: root/chinese/iiimf-le-xcin/files/patch-src_debugInfo.c
diff options
context:
space:
mode:
authorPav Lucistnik <pav@FreeBSD.org>2004-10-13 23:09:44 +0000
committerPav Lucistnik <pav@FreeBSD.org>2004-10-13 23:09:44 +0000
commit6e232619392ffa0ee8f915ad3ffe174456c15a46 (patch)
tree77a35829fb8822191b32db5103dabf32ef04b08c /chinese/iiimf-le-xcin/files/patch-src_debugInfo.c
parentUpdate to version 1.1.1 (diff)
Add iiimf-le-xcin, a IIIMF language engine which ported from a popular
traditional chinese input method, xcin, which was written using XIM protocol. PR: ports/72627 Submitted by: Kuang-che Wu <kcwu@csie.org> Dedicated to: Mavvie (vaccinating!)
Notes
Notes: svn path=/head/; revision=119329
Diffstat (limited to 'chinese/iiimf-le-xcin/files/patch-src_debugInfo.c')
-rw-r--r--chinese/iiimf-le-xcin/files/patch-src_debugInfo.c13
1 files changed, 13 insertions, 0 deletions
diff --git a/chinese/iiimf-le-xcin/files/patch-src_debugInfo.c b/chinese/iiimf-le-xcin/files/patch-src_debugInfo.c
new file mode 100644
index 000000000000..6c869beb6472
--- /dev/null
+++ b/chinese/iiimf-le-xcin/files/patch-src_debugInfo.c
@@ -0,0 +1,13 @@
+--- src/debugInfo.c.orig Mon Aug 16 08:18:25 2004
++++ src/debugInfo.c Thu Oct 14 00:46:26 2004
+@@ -12,9 +12,9 @@
+
+ void debug(const char *format, ...)
+ {
++ va_list args;
+ if(!isDebugMode()) return;
+
+- va_list args;
+ va_start(args, format);
+ vfprintf(stderr, format, args);
+ fprintf(stderr, "\n");