1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* vm_core.h: modify a comment about rb_iseq_t::local_size.

A patch by davidbalbert (David Albert) [Bug #6750]



git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@38936 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
ko1 2013-01-25 03:03:50 +00:00
parent 8a77b4780e
commit d50bd4939a
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,8 @@
Fri Jan 25 12:01:56 2013 Koichi Sasada <ko1@atdot.net>
* 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@segment7.net>
* lib/mkmf.rb: Documented MakeMakefile constants. Hide implementation

View file

@ -225,7 +225,7 @@ struct rb_iseq_struct {
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;