summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-09-09 15:02:42 +0000
committerakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-09-09 15:02:42 +0000
commitbaac56be36abfaef678149b1d112d1280531a6da (patch)
treeded4a811e5cc4c282fd09097260db7a8afcd1718 /include
parentdda64cab99c72081007f4e16ee0507af97d876b8 (diff)
* include/ruby/io.h (rb_io_t): rename field: writeconv_stateless to
writeconv_asciicompat. * io.c: follow the renaming. * gc.c: ditto. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@19274 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'include')
-rw-r--r--include/ruby/io.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/ruby/io.h b/include/ruby/io.h
index 1b28a8bf71..c8c5d7ad5b 100644
--- a/include/ruby/io.h
+++ b/include/ruby/io.h
@@ -68,7 +68,7 @@ typedef struct rb_io_t {
int cbuf_capa;
rb_econv_t *writeconv;
- VALUE writeconv_stateless;
+ VALUE writeconv_asciicompat;
int writeconv_pre_ecflags;
VALUE writeconv_pre_ecopts;
int writeconv_initialized;
@@ -124,7 +124,7 @@ typedef struct rb_io_t {
fp->cbuf_len = 0;\
fp->cbuf_capa = 0;\
fp->writeconv = NULL;\
- fp->writeconv_stateless = Qnil;\
+ fp->writeconv_asciicompat = Qnil;\
fp->writeconv_pre_ecflags = 0;\
fp->writeconv_pre_ecopts = Qnil;\
fp->writeconv_initialized = 0;\