From 51f1a8166bb0cffb32b87a5d9ffde2d19008c5c2 Mon Sep 17 00:00:00 2001 From: David Albert Date: Tue, 17 Jul 2012 18:03:01 -0400 Subject: [PATCH] Fix rb_iseq_struct.local_size description. --- vm_core.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vm_core.h b/vm_core.h index ef13b2f..8b4bb84 100644 --- a/vm_core.h +++ b/vm_core.h @@ -192,7 +192,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; -- 1.7.11.2