* transcode.c (rb_econv_open_by_transcoder_entries): renamed from
rb_trans_open_by_transcoder_entries. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@18621 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
5a4844ed6c
commit
db30661aa9
@ -1,3 +1,8 @@
|
|||||||
|
Thu Aug 14 20:58:57 2008 Tanaka Akira <akr@fsij.org>
|
||||||
|
|
||||||
|
* transcode.c (rb_econv_open_by_transcoder_entries): renamed from
|
||||||
|
rb_trans_open_by_transcoder_entries.
|
||||||
|
|
||||||
Thu Aug 14 20:56:28 2008 Tanaka Akira <akr@fsij.org>
|
Thu Aug 14 20:56:28 2008 Tanaka Akira <akr@fsij.org>
|
||||||
|
|
||||||
* transcode.c (econv_max_output): removed.
|
* transcode.c (econv_max_output): removed.
|
||||||
|
@ -661,7 +661,7 @@ rb_transcoding_close(rb_transcoding *tc)
|
|||||||
}
|
}
|
||||||
|
|
||||||
static rb_econv_t *
|
static rb_econv_t *
|
||||||
rb_trans_open_by_transcoder_entries(int n, transcoder_entry_t **entries)
|
rb_econv_open_by_transcoder_entries(int n, transcoder_entry_t **entries)
|
||||||
{
|
{
|
||||||
rb_econv_t *ts;
|
rb_econv_t *ts;
|
||||||
int i;
|
int i;
|
||||||
@ -749,7 +749,7 @@ rb_econv_open(const char *from, const char *to, int flags)
|
|||||||
entries[num_trans++] = e;
|
entries[num_trans++] = e;
|
||||||
}
|
}
|
||||||
|
|
||||||
ts = rb_trans_open_by_transcoder_entries(num_trans, entries);
|
ts = rb_econv_open_by_transcoder_entries(num_trans, entries);
|
||||||
|
|
||||||
if (flags & UNIVERSAL_NEWLINE_DECODER) {
|
if (flags & UNIVERSAL_NEWLINE_DECODER) {
|
||||||
ts->last_tc = ts->elems[ts->num_trans-2].tc;
|
ts->last_tc = ts->elems[ts->num_trans-2].tc;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user