Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
mruby
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Libraries
mruby
Commits
dc5ade37
Unverified
Commit
dc5ade37
authored
Jan 10, 2021
by
Yukihiro "Matz" Matsumoto
Committed by
GitHub
Jan 10, 2021
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #5275 from dearblue/read_irep
Replace `tempirep` with `RProc`
parents
596b5427
3fc848b5
Changes
2
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
82 additions
and
77 deletions
+82
-77
src/load.c
src/load.c
+79
-76
src/proc.c
src/proc.c
+3
-1
No files found.
src/load.c
View file @
dc5ade37
This diff is collapsed.
Click to expand it.
src/proc.c
View file @
dc5ade37
...
@@ -52,7 +52,9 @@ mrb_proc_new(mrb_state *mrb, const mrb_irep *irep)
...
@@ -52,7 +52,9 @@ mrb_proc_new(mrb_state *mrb, const mrb_irep *irep)
p
->
e
.
target_class
=
tc
;
p
->
e
.
target_class
=
tc
;
}
}
p
->
body
.
irep
=
irep
;
p
->
body
.
irep
=
irep
;
mrb_irep_incref
(
mrb
,
(
mrb_irep
*
)
irep
);
if
(
irep
)
{
mrb_irep_incref
(
mrb
,
(
mrb_irep
*
)
irep
);
}
return
p
;
return
p
;
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment