Skip to content

Commit

Permalink
mirb: enlarge code buffer size to 4KB
Browse files Browse the repository at this point in the history
  • Loading branch information
matz committed Jan 2, 2016
1 parent bd462c5 commit 879e27d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mrbgems/mruby-bin-mirb/tools/mirb/mirb.c
Original file line number Diff line number Diff line change
Expand Up @@ -359,7 +359,7 @@ ctrl_c_handler(int signo)
int
main(int argc, char **argv)
{
char ruby_code[1024] = { 0 };
char ruby_code[4096] = { 0 };
char last_code_line[1024] = { 0 };
#ifndef ENABLE_READLINE
int last_char;
Expand Down

0 comments on commit 879e27d

Please sign in to comment.