summaryrefslogtreecommitdiffstats
path: root/include/ruby
diff options
context:
space:
mode:
authorakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-09-13 17:05:49 +0000
committerakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-09-13 17:05:49 +0000
commit64b0e843592bbfc9f57e3836d42b59db16db4d46 (patch)
tree77a04bedaf4f5c5fc4ca77d1df59892f742cb1db /include/ruby
parentdf2ac1e8911b04384839924e80a99c14b84ee74d (diff)
downloadruby-64b0e843592bbfc9f57e3836d42b59db16db4d46.tar.gz
ruby-64b0e843592bbfc9f57e3836d42b59db16db4d46.tar.xz
ruby-64b0e843592bbfc9f57e3836d42b59db16db4d46.zip
* include/ruby/oniguruma.h
(onigenc_get_right_adjust_char_head_with_prev): add end argument. * regenc.c (onigenc_get_right_adjust_char_head_with_prev): use end argument. * regexec.c (forward_search_range): follow the interface change. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@19331 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'include/ruby')
-rw-r--r--include/ruby/oniguruma.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/ruby/oniguruma.h b/include/ruby/oniguruma.h
index cd4bedfe0..911ea45dc 100644
--- a/include/ruby/oniguruma.h
+++ b/include/ruby/oniguruma.h
@@ -303,7 +303,7 @@ OnigEncoding onigenc_get_default_encoding P_((void));
ONIG_EXTERN
void onigenc_set_default_caseconv_table P_((const OnigUChar* table));
ONIG_EXTERN
-OnigUChar* onigenc_get_right_adjust_char_head_with_prev P_((OnigEncoding enc, const OnigUChar* start, const OnigUChar* s, const OnigUChar** prev));
+OnigUChar* onigenc_get_right_adjust_char_head_with_prev P_((OnigEncoding enc, const OnigUChar* start, const OnigUChar* s, const OnigUChar* end, const OnigUChar** prev));
ONIG_EXTERN
OnigUChar* onigenc_get_prev_char_head P_((OnigEncoding enc, const OnigUChar* start, const OnigUChar* s));
ONIG_EXTERN