Copyright retained for the purpose of protecting free redistribution of
source.
-Kcc is copyright by Yasuhiro Tonooka (tonooka@msi.co.jp),
-and libkcc is copyright by takeshi@SoftAgency.co.jp.
-
Specific permission is granted for the GPLed code in this distribition to
be linked to OpenSSL without invoking GPL clause 2(b).
+2002-07-08
+
+ * libkcc: removed from the source tree.
+ * COPYING
+ src/about.c: removed the copyright notice for libkcc.
+ * src/codeconv.c: conv_guess_encoding(): check for ASCII code first
+ for speedup.
+
2002-07-05
* src/prefs_actions.c: comply with the coding style.
+2002-07-08 [paul] 0.7.8claws54
+
+ * sync with 0.7.8cvs21
+ see ChangeLog 2002-07-08
+
2002-07-07 [alfons] 0.7.8claws53
* src/Makefile.am
+2002-07-08
+
+ * libkcc: ¥½¡¼¥¹¥Ä¥ê¡¼¤«¤éºï½ü¡£
+ * COPYING
+ src/about.c: libkcc ¤ÎÃøºî¸¢É½¼¨¤òºï½ü¡£
+ * src/codeconv.c: conv_guess_encoding(): ¥¹¥Ô¡¼¥É¥¢¥Ã¥×¤Î¤¿¤á¤Ë
+ ºÇ½é¤Ë ASCII ¥³¡¼¥É¤ò¥Á¥§¥Ã¥¯¡£
+
2002-07-05
* src/prefs_actions.c: ¥³¡¼¥Ç¥£¥ó¥°¥¹¥¿¥¤¥ë¤Ë½àµò¡£
MICRO_VERSION=8
INTERFACE_AGE=0
BINARY_AGE=0
-EXTRA_VERSION=claws53
+EXTRA_VERSION=claws54
VERSION=$MAJOR_VERSION.$MINOR_VERSION.$MICRO_VERSION$EXTRA_VERSION
dnl set $target
fi
AC_CHECK_LIB(xpg4, setlocale)
-dnl AC_CHECK_LIB(kcc, KCC_filter)
dnl for GThread support (currently disabled)
dnl AC_ARG_ENABLE(threads,
intl/Makefile
ac/Makefile
po/Makefile.in
-libkcc/Makefile
src/version.h
src/Makefile
faq/Makefile
"1993 and 1995. Copyright retained for the purpose of protecting free "
"redistribution of source.\n\n"), -1);
- gtk_text_insert(GTK_TEXT(text), NULL, NULL, NULL,
- _("Kcc is copyright by Yasuhiro Tonooka <tonooka@msi.co.jp>, "
- "and libkcc is copyright by takeshi@SoftAgency.co.jp.\n\n"), -1);
-
#if USE_GPGME
gtk_text_insert(GTK_TEXT(text), NULL, NULL, NULL,
_("GPGME is copyright 2001 by Werner Koch <dd9jn@gnu.org>\n\n"), -1);
if (guessed == C_US_ASCII)
return C_ISO_2022_JP;
p += 2;
+ } else if (isascii(*p)) {
+ p++;
} else if (iseuckanji(*p) && iseuckanji(*(p + 1))) {
if (*p >= 0xfd && *p <= 0xfe)
return C_EUC_JP;