зеркало из https://github.com/github/ruby.git
* eval.c (rb_exec_recursive): declaration should precede statements
before C99. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@8113 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
Родитель
2f2cc0ddfc
Коммит
1c3769c67d
|
@ -1,3 +1,8 @@
|
||||||
|
Tue Mar 8 10:48:53 2005 NAKAMURA Usaku <usa@ruby-lang.org>
|
||||||
|
|
||||||
|
* eval.c (rb_exec_recursive): declaration should precede statements
|
||||||
|
before C99.
|
||||||
|
|
||||||
Tue Mar 8 10:05:40 2005 Yukihiro Matsumoto <matz@ruby-lang.org>
|
Tue Mar 8 10:05:40 2005 Yukihiro Matsumoto <matz@ruby-lang.org>
|
||||||
|
|
||||||
* error.c (errno_missing): Errno.const_missing to allow references
|
* error.c (errno_missing): Errno.const_missing to allow references
|
||||||
|
@ -8,8 +13,8 @@ Tue Mar 8 10:05:40 2005 Yukihiro Matsumoto <matz@ruby-lang.org>
|
||||||
|
|
||||||
Sat Mar 8 01:19:00 2005 NARUSE, Yui <naruse@ruby-lang.org>
|
Sat Mar 8 01:19:00 2005 NARUSE, Yui <naruse@ruby-lang.org>
|
||||||
|
|
||||||
* ext/nkf/nkf-utf8/nkf.c: follow nkf 1.66
|
* ext/nkf/nkf-utf8/nkf.c: follow nkf 1.66
|
||||||
fixed: [ruby-dev:25828]
|
fixed: [ruby-dev:25828]
|
||||||
|
|
||||||
Mon Mar 7 21:29:40 2005 GOTOU Yuuzou <gotoyuzo@notwork.org>
|
Mon Mar 7 21:29:40 2005 GOTOU Yuuzou <gotoyuzo@notwork.org>
|
||||||
|
|
||||||
|
|
2
eval.c
2
eval.c
|
@ -13057,10 +13057,10 @@ rb_exec_recursive(func, obj, arg)
|
||||||
return (*func)(obj, arg, Qtrue);
|
return (*func)(obj, arg, Qtrue);
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
recursive_push(obj);
|
|
||||||
VALUE result;
|
VALUE result;
|
||||||
int state;
|
int state;
|
||||||
|
|
||||||
|
recursive_push(obj);
|
||||||
PUSH_TAG(PROT_NONE);
|
PUSH_TAG(PROT_NONE);
|
||||||
if ((state = EXEC_TAG()) == 0) {
|
if ((state = EXEC_TAG()) == 0) {
|
||||||
result = (*func)(obj, arg, Qfalse);
|
result = (*func)(obj, arg, Qfalse);
|
||||||
|
|
Загрузка…
Ссылка в новой задаче