1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* 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
This commit is contained in:
H_Konishi 2002-09-14 11:17:32 +00:00
parent a1ea7b6d56
commit aa904b2050
2 changed files with 4 additions and 3 deletions

View file

@ -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.

View file

@ -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));