From baac56be36abfaef678149b1d112d1280531a6da Mon Sep 17 00:00:00 2001 From: akr Date: Tue, 9 Sep 2008 15:02:42 +0000 Subject: * 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 --- include/ruby/io.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'include') 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;\ -- cgit v1.2.3