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

* exception error messages updated. [ruby-core:04497]

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@8035 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
matz 2005-02-28 02:45:23 +00:00
parent ba32fdd167
commit 88d5dcc8de
27 changed files with 113 additions and 109 deletions

View file

@ -375,7 +375,7 @@ getDevice(master,slave)
}
close(i);
}
rb_raise(rb_eRuntimeError, "Cannot get Master/Slave device");
rb_raise(rb_eRuntimeError, "can't get Master/Slave device");
#else
char **p;
char MasterName[DEVICELEN];
@ -394,7 +394,7 @@ getDevice(master,slave)
close(i);
}
}
rb_raise(rb_eRuntimeError, "Cannot get %s", SlaveName);
rb_raise(rb_eRuntimeError, "can't get %s", SlaveName);
#endif
}
#endif /* HAVE__GETPTY */