ruby-changes:1912
From: ko1@a...
Date: 8 Sep 2007 01:48:35 +0900
Subject: [ruby-changes:1912] usa - Ruby:r13403 (trunk): * regenc.c, regenc.h (onigenc_single_byte_mbc_enc_len): should take
usa 2007-09-08 01:47:40 +0900 (Sat, 08 Sep 2007)
New Revision: 13403
Modified files:
trunk/ChangeLog
trunk/regenc.c
trunk/regenc.h
Log:
* regenc.c, regenc.h (onigenc_single_byte_mbc_enc_len): should take
two arguments. [ruby-dev:31754]
http://svn.ruby-lang.org/cgi-bin/viewvc.cgi/trunk/ChangeLog?r1=13403&r2=13402
http://svn.ruby-lang.org/cgi-bin/viewvc.cgi/trunk/regenc.c?r1=13403&r2=13402
http://svn.ruby-lang.org/cgi-bin/viewvc.cgi/trunk/regenc.h?r1=13403&r2=13402
Index: regenc.c
===================================================================
--- regenc.c (revision 13402)
+++ regenc.c (revision 13403)
@@ -592,7 +592,7 @@
#endif
extern int
-onigenc_single_byte_mbc_enc_len(const UChar* p)
+onigenc_single_byte_mbc_enc_len(const UChar* p, const UChar* e)
{
return 1;
}
Index: ChangeLog
===================================================================
--- ChangeLog (revision 13402)
+++ ChangeLog (revision 13403)
@@ -1,3 +1,8 @@
+Sat Sep 8 01:46:36 2007 NAKAMURA Usaku <usa@r...>
+
+ * regenc.c, regenc.h (onigenc_single_byte_mbc_enc_len): should take
+ two arguments. [ruby-dev:31754]
+
Fri Sep 7 00:58:16 2007 Koichi Sasada <ko1@a...>
* common.mk: fix typo.
Index: regenc.h
===================================================================
--- regenc.h (revision 13402)
+++ regenc.h (revision 13403)
@@ -117,7 +117,7 @@
/* methods for single byte encoding */
ONIG_EXTERN int onigenc_ascii_mbc_case_fold P_((OnigCaseFoldType flag, const UChar** p, const UChar* end, UChar* lower));
-ONIG_EXTERN int onigenc_single_byte_mbc_enc_len P_((const UChar* p));
+ONIG_EXTERN int onigenc_single_byte_mbc_enc_len P_((const UChar* p, const UChar* e));
ONIG_EXTERN OnigCodePoint onigenc_single_byte_mbc_to_code P_((const UChar* p, const UChar* end));
ONIG_EXTERN int onigenc_single_byte_code_to_mbclen P_((OnigCodePoint code));
ONIG_EXTERN int onigenc_single_byte_code_to_mbc P_((OnigCodePoint code, UChar *buf));
--
ML: ruby-changes@q...
Info: http://www.atdot.net/~ko1/quickml