mrubyを超漢字で動作させる
修訂 | bde5311e90353bdf994cb86ba98633927469ce8d (tree) |
---|---|
時間 | 2017-06-05 23:09:08 |
作者 | ornse01 <ornse01@user...> |
Commiter | ornse01 |
fix typo
@@ -96,7 +96,7 @@ codegen_error(codegen_scope *s, const char *message) | ||
96 | 96 | mrb_pool_close(s->mpool); |
97 | 97 | s = tmp; |
98 | 98 | } |
99 | -#ifndef MBB_DISABLE_STDIO | |
99 | +#ifndef MRB_DISABLE_STDIO | |
100 | 100 | if (s->filename && s->lineno) { |
101 | 101 | fprintf(stderr, "codegen error:%s:%d: %s\n", s->filename, s->lineno, message); |
102 | 102 | } |
@@ -5442,7 +5442,7 @@ mrb_parser_new(mrb_state *mrb) | ||
5442 | 5442 | p->pool = pool; |
5443 | 5443 | |
5444 | 5444 | p->s = p->send = NULL; |
5445 | -#ifndef MRB_DISBLE_STDIO | |
5445 | +#ifndef MRB_DISABLE_STDIO | |
5446 | 5446 | p->f = NULL; |
5447 | 5447 | #endif |
5448 | 5448 |