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

ruby-changes:26884

From: ko1 <ko1@a...>
Date: Fri, 25 Jan 2013 12:07:09 +0900 (JST)
Subject: [ruby-changes:26884] ko1:r38936 (trunk): * vm_core.h: modify a comment about rb_iseq_t::local_size.

ko1	2013-01-25 12:03:50 +0900 (Fri, 25 Jan 2013)

  New Revision: 38936

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

  Log:
    * vm_core.h: modify a comment about rb_iseq_t::local_size.
      A patch by davidbalbert (David Albert) [Bug #6750]

  Modified files:
    trunk/ChangeLog
    trunk/vm_core.h

Index: ChangeLog
===================================================================
--- ChangeLog	(revision 38935)
+++ ChangeLog	(revision 38936)
@@ -1,3 +1,8 @@ https://github.com/ruby/ruby/blob/trunk/ChangeLog#L1
+Fri Jan 25 12:01:56 2013  Koichi Sasada  <ko1@a...>
+
+	* vm_core.h: modify a comment about rb_iseq_t::local_size.
+	  A patch by davidbalbert (David Albert) [Bug #6750]
+
 Fri Jan 25 10:36:31 2013  Eric Hodel  <drbrain@s...>
 
 	* lib/mkmf.rb:  Documented MakeMakefile constants.  Hide implementation
Index: vm_core.h
===================================================================
--- vm_core.h	(revision 38935)
+++ vm_core.h	(revision 38936)
@@ -225,7 +225,7 @@ struct rb_iseq_struct { https://github.com/ruby/ruby/blob/trunk/vm_core.h#L225
     ID *local_table;		/* must free */
     int local_table_size;
 
-    /* method, class frame: sizeof(vars) + 1, block frame: sizeof(vars) */
+    /* sizeof(vars) + 1 */
     int local_size;
 
     struct iseq_inline_cache_entry *ic_entries;

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

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