mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* 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
2 changed files with 7 additions and 2 deletions
|
@ -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>
|
||||
|
||||
* transcode.c (econv_max_output): removed.
|
||||
|
|
|
@ -661,7 +661,7 @@ rb_transcoding_close(rb_transcoding *tc)
|
|||
}
|
||||
|
||||
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;
|
||||
int i;
|
||||
|
@ -749,7 +749,7 @@ rb_econv_open(const char *from, const char *to, int flags)
|
|||
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) {
|
||||
ts->last_tc = ts->elems[ts->num_trans-2].tc;
|
||||
|
|
Loading…
Reference in a new issue