• R/O
  • HTTP
  • SSH
  • HTTPS

提交

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

mrubyを超漢字で動作させる


Commit MetaInfo

修訂bde5311e90353bdf994cb86ba98633927469ce8d (tree)
時間2017-06-05 23:09:08
作者ornse01 <ornse01@user...>
Commiterornse01

Log Message

fix typo

Change Summary

差異

--- a/mrbgems/mruby-compiler/core/codegen.c
+++ b/mrbgems/mruby-compiler/core/codegen.c
@@ -96,7 +96,7 @@ codegen_error(codegen_scope *s, const char *message)
9696 mrb_pool_close(s->mpool);
9797 s = tmp;
9898 }
99-#ifndef MBB_DISABLE_STDIO
99+#ifndef MRB_DISABLE_STDIO
100100 if (s->filename && s->lineno) {
101101 fprintf(stderr, "codegen error:%s:%d: %s\n", s->filename, s->lineno, message);
102102 }
--- a/mrbgems/mruby-compiler/core/parse.y
+++ b/mrbgems/mruby-compiler/core/parse.y
@@ -5442,7 +5442,7 @@ mrb_parser_new(mrb_state *mrb)
54425442 p->pool = pool;
54435443
54445444 p->s = p->send = NULL;
5445-#ifndef MRB_DISBLE_STDIO
5445+#ifndef MRB_DISABLE_STDIO
54465446 p->f = NULL;
54475447 #endif
54485448