aboutsummaryrefslogtreecommitdiffstats
path: root/enc/big5.c
diff options
context:
space:
mode:
authornaruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-01-15 14:54:40 +0000
committernaruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-01-15 14:54:40 +0000
commit0a640a93860ecd948431e5c29fc6f6ab8853c4b5 (patch)
tree35c9ec8338b78601b198ea588415dccd43c02b25 /enc/big5.c
parent904572d2e5a35c6fde655aeb24b11fcb9f7b5ba3 (diff)
downloadruby-0a640a93860ecd948431e5c29fc6f6ab8853c4b5.tar.gz
* enc/*: add ARG_UNUSED.
* enc/koi8_u.c: added. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@15069 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'enc/big5.c')
-rw-r--r--enc/big5.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/enc/big5.c b/enc/big5.c
index 5829c3c47f..676e262252 100644
--- a/enc/big5.c
+++ b/enc/big5.c
@@ -49,7 +49,7 @@ static const int EncLen_BIG5[] = {
};
static int
-big5_mbc_enc_len(const UChar* p, const UChar* e, OnigEncoding enc)
+big5_mbc_enc_len(const UChar* p, const UChar* end ARG_UNUSED, OnigEncoding enc ARG_UNUSED)
{
return EncLen_BIG5[*p];
}
@@ -135,7 +135,7 @@ big5_left_adjust_char_head(const UChar* start, const UChar* s, OnigEncoding enc)
}
static int
-big5_is_allowed_reverse_match(const UChar* s, const UChar* end ARG_UNUSED, OnigEncoding enc)
+big5_is_allowed_reverse_match(const UChar* s, const UChar* end ARG_UNUSED, OnigEncoding enc ARG_UNUSED)
{
const UChar c = *s;