summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-09-09 16:27:02 +0000
committerakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-09-09 16:27:02 +0000
commit297d87e979d9548512935456433a899bfab08a19 (patch)
tree351dd6c8875a5fc017cb8bac41d4c6a472db3c9e /include
parent14c80c7189ca51e0615c6c9bc17f196c7d9a0821 (diff)
downloadruby-297d87e979d9548512935456433a899bfab08a19.tar.gz
ruby-297d87e979d9548512935456433a899bfab08a19.tar.xz
ruby-297d87e979d9548512935456433a899bfab08a19.zip
* 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: http://svn.ruby-lang.org/repos/ruby/trunk@19278 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'include')
-rw-r--r--include/ruby/encoding.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/ruby/encoding.h b/include/ruby/encoding.h
index ed65e59fd..dc9b97439 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 */