From 2d26208a55df9f55268bdbd80f47a365e1f1155c Mon Sep 17 00:00:00 2001 From: akr Date: Tue, 9 Sep 2008 16:27:02 +0000 Subject: * include/ruby/encoding.h (econv_after_output): renamed from econv_output_followed_by_input. (ECONV_AFTER_OUTPUT): renamed from ECONV_OUTPUT_FOLLOWED_BY_INPUT. * transcode.c: follow the renaming. * io.c: ditto. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@19278 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- include/ruby/encoding.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'include/ruby/encoding.h') diff --git a/include/ruby/encoding.h b/include/ruby/encoding.h index ed65e59fdb..dc9b97439f 100644 --- a/include/ruby/encoding.h +++ b/include/ruby/encoding.h @@ -202,7 +202,7 @@ typedef enum { econv_destination_buffer_full, econv_source_buffer_empty, econv_finished, - econv_output_followed_by_input, + econv_after_output, econv_incomplete_input, } rb_econv_result_t; @@ -280,7 +280,7 @@ void rb_econv_binmode(rb_econv_t *ec); /* flags for rb_econv_convert */ #define ECONV_PARTIAL_INPUT 0x00010000 -#define ECONV_OUTPUT_FOLLOWED_BY_INPUT 0x00020000 +#define ECONV_AFTER_OUTPUT 0x00020000 /* end of flags for rb_econv_convert */ #endif /* RUBY_ENCODING_H */ -- cgit v1.2.3