summaryrefslogtreecommitdiff
path: root/io.c
diff options
context:
space:
mode:
authormatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-01-17 22:20:20 +0000
committermatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-01-17 22:20:20 +0000
commitd765a38bf5cc8101bd4a337860367a2981cb7683 (patch)
tree5beef325e042de63b64f6eee40005363f1a11a0c /io.c
parent6d59907c0f34cae8ce23be7c64f094dfddfed2b5 (diff)
* io.c (io_fwrite): always flush IO on tty, even without newlines.
[ruby-core:15107] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@15097 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'io.c')
-rw-r--r--io.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/io.c b/io.c
index 12295c8ff7..734799a83a 100644
--- a/io.c
+++ b/io.c
@@ -693,7 +693,7 @@ io_fwrite(VALUE str, rb_io_t *fptr)
}
if ((fptr->mode & FMODE_SYNC) ||
(fptr->wbuf && fptr->wbuf_capa <= fptr->wbuf_len + len) ||
- ((fptr->mode & FMODE_TTY) && memchr(RSTRING_PTR(str)+offset, '\n', len))) {
+ (fptr->mode & FMODE_TTY)) {
/* xxx: use writev to avoid double write if available */
if (fptr->wbuf_len && fptr->wbuf_len+len <= fptr->wbuf_capa) {
if (fptr->wbuf_capa < fptr->wbuf_off+fptr->wbuf_len+len) {