From aa904b2050026a0fa6bc7d3e1869dc471c1b0749 Mon Sep 17 00:00:00 2001 From: H_Konishi Date: Sat, 14 Sep 2002 11:17:32 +0000 Subject: [PATCH] * error.c(rb_sys_fail): remove case EPIPE on bcc32 . git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@2865 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 4 ++++ error.c | 3 --- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/ChangeLog b/ChangeLog index 3486214299..d0d563ed23 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +Sat Sep 14 20:13:42 2002 KONISHI Hiromasa + + * error.c(rb_sys_fail): remove case EPIPE on bcc32 . + Fri Sep 13 23:39:49 2002 Nobuyoshi Nakada * dir.c (glob_func_caller): add prototype to get rid of warning. diff --git a/error.c b/error.c index ed2d5220b7..dfa9482794 100644 --- a/error.c +++ b/error.c @@ -733,9 +733,6 @@ rb_sys_fail(mesg) rb_bug("rb_sys_fail() - errno == 0"); } -#ifdef __BORLANDC__ - if (errno == EPIPE) return; // (*moriq*) -#endif err = strerror(errno); if (mesg) { volatile VALUE tmp = rb_str_inspect(rb_str_new2(mesg));