summaryrefslogtreecommitdiffhomepage
path: root/include
diff options
context:
space:
mode:
authorYukihiro "Matz" Matsumoto <[email protected]>2017-10-31 09:06:04 +0900
committerYukihiro "Matz" Matsumoto <[email protected]>2017-10-31 09:10:08 +0900
commitb6598e052fda9a27692156ab8b973ce6e3374ee3 (patch)
treecd26a94f0efd05990f6b306bf238129189e820d3 /include
parent77edafb04c4bc15e3c348acb0d1e7f873b7a66f0 (diff)
downloadmruby-b6598e052fda9a27692156ab8b973ce6e3374ee3.tar.gz
mruby-b6598e052fda9a27692156ab8b973ce6e3374ee3.zip
Need to mark fibers referenced from `env`; fix #3837
The issue #3837 is a regression of #3819. I was mistakenly removed a important code to mark fibers from `env`.
Diffstat (limited to 'include')
-rw-r--r--include/mruby/proc.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/include/mruby/proc.h b/include/mruby/proc.h
index 17290950c..b33e9e1a2 100644
--- a/include/mruby/proc.h
+++ b/include/mruby/proc.h
@@ -19,7 +19,6 @@ struct REnv {
MRB_OBJECT_HEADER;
mrb_value *stack;
struct mrb_context *cxt;
- // struct RProc *proc;
mrb_sym mid;
};