| Age | Commit message (Collapse) | Author |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
"0x"; fix #3043
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
cf. http://qiita.com/tsahara@github/items/b2a442af95ac893e10a1 (Japanese).
|
|
|
|
|
|
|
|
|
|
RUBY_ENGINE_VERSION is equivalent to MRUBY_VERSION. It would be a
standard way to get the interpreter version (without a case expression).
It's also already defined by CRuby 2.3, JRuby 9000, Opal, and Rubinius.
|
|
changes:
* rename DISABLE_STDIO -> MRB_DISABLE_STDIO
* rename ENABLE_DEBUG -> MRB_ENABLE_DEBUG_HOOK
* no more opposite macro definitions (e.g. ENABLE_STDIO, DISABLE_DEBUG).
* rewrite above macro references throughout the code.
* update documents
|
|
|
|
remove return
|
|
|
|
The return type of the mrb_objspace_each_objects function is void.
So this return statement with an expression is unnecessary and
also violates a constraint. From C99 §6.8.6.4:
>A return statement with an expression shall not appear
>in a function whose return type is void.
|
|
nil; fix #3002
|
|
#3000
|
|
More Docs
|
|
|
|
|
|
|
|
|
|
call always frexp() instead of frexpl()
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
cf. #2963
|
|
|
|
|
|
define MRB_UTF8_STRING (in mrbconf.h) to enable UTF-8 support.
|
|
|