summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog4
-rw-r--r--error.c3
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 <konishih@fd6.so-net.ne.jp>
+
+ * error.c(rb_sys_fail): remove case EPIPE on bcc32 .
+
Fri Sep 13 23:39:49 2002 Nobuyoshi Nakada <nobu.nokada@softhome.net>
* 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));