mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
eban
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@1104 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
51173d8ae4
commit
ab9be24857
2 changed files with 1 additions and 5 deletions
|
@ -1,7 +1,3 @@
|
|||
Wed Jan 10 11:30:13 2001 WATANABE Hirofumi <eban@ruby-lang.org>
|
||||
|
||||
* ruby.c (load_file): typo(rb_load_fail -> rb_load_failed).
|
||||
|
||||
Wed Jan 10 01:50:45 2001 Yukihiro Matsumoto <matz@ruby-lang.org>
|
||||
|
||||
* string.c (rb_str_reverse_bang): forgot to call rb_str_modify().
|
||||
|
|
2
ruby.c
2
ruby.c
|
@ -728,7 +728,7 @@ load_file(fname, script)
|
|||
FILE *fp = fopen(fname, "r");
|
||||
|
||||
if (fp == NULL) {
|
||||
rb_load_failed(fname);
|
||||
rb_load_fail(fname);
|
||||
}
|
||||
fclose(fp);
|
||||
|
||||
|
|
Loading…
Reference in a new issue