Skip to content

Commit

Permalink
* error.c(rb_sys_fail): remove case EPIPE on bcc32 .
Browse files Browse the repository at this point in the history
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@2865 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
  • Loading branch information
H_Konishi authored and H_Konishi committed Sep 14, 2002
1 parent a1ea7b6 commit aa904b2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
4 changes: 4 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
Sat Sep 14 20:13:42 2002 KONISHI Hiromasa <[email protected]>

* error.c(rb_sys_fail): remove case EPIPE on bcc32 .

Fri Sep 13 23:39:49 2002 Nobuyoshi Nakada <[email protected]>

* dir.c (glob_func_caller): add prototype to get rid of warning.
Expand Down
3 changes: 0 additions & 3 deletions error.c
Original file line number Diff line number Diff line change
Expand Up @@ -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));
Expand Down

0 comments on commit aa904b2

Please sign in to comment.