ruby-changes:9966
From: takano32 <ko1@a...>
Date: Wed, 14 Jan 2009 14:44:06 +0900 (JST)
Subject: [ruby-changes:9966] Ruby:r21507 (trunk): * cont.c: fix prototype declare of register_stack_extend
takano32 2009-01-14 14:43:49 +0900 (Wed, 14 Jan 2009) New Revision: 21507 http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=21507 Log: * cont.c: fix prototype declare of register_stack_extend Modified files: trunk/ChangeLog trunk/cont.c Index: ChangeLog =================================================================== --- ChangeLog (revision 21506) +++ ChangeLog (revision 21507) @@ -1,3 +1,7 @@ +Wed Jan 14 14:42:30 2009 TAKANO Mitsuhiro (takano32) <tak@n...> + + * cont.c: fix prototype declare of register_stack_extend + Wed Jan 14 13:19:21 2009 Nobuyoshi Nakada <nobu@r...> * win32/win32.c (rb_w32_aspawn): should not escape with carret Index: cont.c =================================================================== --- cont.c (revision 21506) +++ cont.c (revision 21507) @@ -375,7 +375,7 @@ {/* the above lines make cc-mode.el confused so much */} #endif int rb_dummy_false = 0; -NORETURN(NOINLINE(static void register_stack_extend(rb_context_t *, VALUE *))); +NORETURN(NOINLINE(static void register_stack_extend(rb_context_t *, VALUE *, VALUE *))); static void register_stack_extend(rb_context_t *cont, VALUE *vp, VALUE *curr_bsp) { -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/