[前][次][番号順一覧][スレッド一覧]

ruby-changes:32404

From: nobu <ko1@a...>
Date: Thu, 2 Jan 2014 04:15:37 +0900 (JST)
Subject: [ruby-changes:32404] nobu:r44483 (trunk): eval.c: extra modifier

nobu	2014-01-02 04:15:29 +0900 (Thu, 02 Jan 2014)

  New Revision: 44483

  http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=44483

  Log:
    eval.c: extra modifier
    
    * eval.c (rb_longjmp): remove an extra modifier from the forward
      declaration to match the actual definition.  [ruby-core:59451]
      [Bug #9338]

  Modified files:
    trunk/ChangeLog
    trunk/eval.c
Index: ChangeLog
===================================================================
--- ChangeLog	(revision 44482)
+++ ChangeLog	(revision 44483)
@@ -1,3 +1,9 @@ https://github.com/ruby/ruby/blob/trunk/ChangeLog#L1
+Thu Jan  2 04:15:13 2014  Nobuyoshi Nakada  <nobu@r...>
+
+	* eval.c (rb_longjmp): remove an extra modifier from the forward
+	  declaration to match the actual definition.  [ruby-core:59451]
+	  [Bug #9338]
+
 Thu Jan  2 01:23:30 2014  Masaki Matsushita  <glass.saga@g...>
 
 	* vm_eval.c (method_missing): use ALLOCV_N() instead of
Index: eval.c
===================================================================
--- eval.c	(revision 44482)
+++ eval.c	(revision 44483)
@@ -429,7 +429,7 @@ rb_frozen_class_p(VALUE klass) https://github.com/ruby/ruby/blob/trunk/eval.c#L429
     }
 }
 
-NORETURN(static void rb_longjmp(int, volatile VALUE, volatile VALUE));
+NORETURN(static void rb_longjmp(int, volatile VALUE, VALUE));
 static VALUE get_errinfo(void);
 static VALUE get_thread_errinfo(rb_thread_t *th);
 

--
ML: ruby-changes@q...
Info: http://www.atdot.net/~ko1/quickml/

[前][次][番号順一覧][スレッド一覧]