| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2020-05-01 | Fix typo and include location | Uchio Kondo | |
| 2020-05-01 | Skip socket check on windows | Uchio Kondo | |
| 2020-05-01 | Follow C90 style | Uchio Kondo | |
| 2020-05-01 | Test mruby-io in tmpdir when AF_UNIX cannot be created on cwd | Uchio Kondo | |
| 2020-04-30 | Merge pull request #4987 from shuujii/avoid-changing-directory-in-mruby-io-test | Yukihiro "Matz" Matsumoto | |
| Avoid changing directory in `mruby-io` test | |||
| 2020-04-29 | Avoid changing directory in `mruby-io` test | KOBAYASHI Shuji | |
| 2020-04-29 | Avoid comparing pointers and integers | dearblue | |
| 2020-04-28 | Should not use `assert` with expressions with side-effect; ref #4981 | Yukihiro "Matz" Matsumoto | |
| `assert()` can be completely removed when `NDEBUG` is set. | |||
| 2020-04-28 | Fixed wrong condition in #4981. | Yukihiro "Matz" Matsumoto | |
| 2020-04-28 | Add `#include <string.h>` on all platforms for `strncpy`; #4981 | Yukihiro "Matz" Matsumoto | |
| 2020-04-28 | Remove unused local variable if `MRB_UTF8_STRING` is not set. | Yukihiro "Matz" Matsumoto | |
| Ref #4982 #4983 | |||
| 2020-04-28 | Avoid `snprintf` in `mruby-io` test; ref #4981 | Yukihiro "Matz" Matsumoto | |
| 2020-04-28 | Remove the temporary file from the `AF_UNIX` socket test; #4981 | Yukihiro "Matz" Matsumoto | |
| 2020-04-28 | Fix `IO#readchar` to return broken UTF-8 rather than `EOF` error. | Yukihiro "Matz" Matsumoto | |
| The behavior is different from CRuby, but we believe this is a right behavior for mruby, which only supports either ASCII or UTF-8 exclusively; fix #4983, ref #4982 ``` $ printf '\xe3\x81' | ruby -e 'p STDIN.readchar' "\xE3\x81" ``` ``` $ printf '\xe3\x81' | mruby -e 'p STDIN.readchar' "\xE3" ``` | |||
| 2020-04-28 | Fix `IO#readchar` to support UTF-8 char reading; fix #4712 | Yukihiro "Matz" Matsumoto | |
| This fix only effective when `MRB_UTF8_STRING` is set. | |||
| 2020-04-28 | Rename (and expose) UTF-8 related functions; ref #4712 | Yukihiro "Matz" Matsumoto | |
| - mrb_utf8len() - returns the size of a UTF-8 char (in bytes) - mrb_utf8_strlen() - returns the length of a UTF-8 string (in char) | |||
| 2020-04-28 | Fix `_read_buf` to be more efficient; fix #4982 | Yukihiro "Matz" Matsumoto | |
| The bug was introduced by #4712. The `getc' problem resurrected. It should be addressed soon. | |||
| 2020-04-28 | Fix `IO#sysread` to update buffer string on `EOF`; ref #4982 | Yukihiro "Matz" Matsumoto | |
| 2020-04-28 | Update `IO#ungetc` to keep `@buf` string; ref #4982 | Yukihiro "Matz" Matsumoto | |
| 2020-04-28 | Fix typo and include location | Uchio Kondo | |
| 2020-04-28 | Skip socket check on windows | Uchio Kondo | |
| 2020-04-28 | Follow C90 style | Uchio Kondo | |
| 2020-04-28 | Test mruby-io in tmpdir when AF_UNIX cannot be created on cwd | Uchio Kondo | |
| 2020-04-27 | Updating `parse.y for recent `bison` (retry). | Yukihiro "Matz" Matsumoto | |
| 2020-04-27 | Revert "Change obsolete `%pure-parser` to `%define api.pure`." | Yukihiro "Matz" Matsumoto | |
| This reverts commit 682a31f92b3ac86ca59f7e8e740197e50b4452e5. Unfortunately, I couldn't run newer `bison` on TravisCI. Maybe next time. | |||
| 2020-04-27 | Change obsolete `%pure-parser` to `%define api.pure`. | Yukihiro "Matz" Matsumoto | |
| Recent `bison` warns for `%pure-parser`. We kept it since MacOS only provide ancient `bison`, but the warning is noisy and there's no hope that Apple will upgrade `bison`. MacOS users must install the newer version of `bison`, by typing `brew install bison` for example. Note that `brew` does not overwrite the `bison` execution path automatically, so you need to update your `.bash_profile` as instructed by `brew`. | |||
| 2020-04-26 | Remove unused `mruby-error` in `mruby-bin-mruby` | dearblue | |
| 2020-04-25 | Implemented argument forwarding by `...` | Yukihiro "Matz" Matsumoto | |
| 2020-04-24 | Removed comments mentioning `MRB_WITHOUT_FLOAT`; ref 2e661e8 | dearblue | |
| The comment is for messages when `MRB_INT16` and `MRB_WITHOUT_FLOAT` are specified at the same time. The comment itself is no longer needed now that `MRB_INT16` is gone. | |||
| 2020-04-22 | Fix `instance_exec` and `class_exec` to avoid crash on indirect calls. | Yukihiro "Matz" Matsumoto | |
| Thank you @shuujii to additional report on #4973 | |||
| 2020-04-21 | Removed comments mentioning `MRB_INT16`. | Yukihiro "Matz" Matsumoto | |
| 2020-04-15 | Merge pull request #4968 from dearblue/check-fd | Yukihiro "Matz" Matsumoto | |
| Check the file descriptor with `IO#initialize`; resolve #4966 | |||
| 2020-04-14 | Selecting fd should be less than `FD_SETSIZE`; close #4966 | Yukihiro "Matz" Matsumoto | |
| 2020-04-14 | Merge pull request #4969 from dearblue/nostdio-pack | Yukihiro "Matz" Matsumoto | |
| Support `MRB_DISABLE_STDIO` for mruby-pack; ref #4954 | |||
| 2020-04-14 | Merge pull request #4970 from dearblue/nostdio-sprintf | Yukihiro "Matz" Matsumoto | |
| Support `MRB_DISABLE_STDIO` for mruby-sprintf; ref #4954 | |||
| 2020-04-12 | Check the file descriptor with `IO#initialize`; resolve #4966 | dearblue | |
| 2020-04-11 | Support `MRB_DISABLE_STDIO` for mruby-sprintf; ref #4954 | dearblue | |
| 2020-04-11 | Supports some specifier flags with `mrb_float_to_str()` | dearblue | |
| Changed to understand `#`, `0`, `-`, ` ` and `+`. Based on src/stdio/vfprintf.c in git://git.musl-libc.org/musl | |||
| 2020-04-11 | Fixed a build error in mruby-config | dearblue | |
| The build error occurred when the "build/XXX/bin" directory did not exist. | |||
| 2020-04-11 | Support `MRB_DISABLE_STDIO` for mruby-pack; ref #4954 | dearblue | |
| 2020-04-04 | Unused library folder | Reckordp | |
| 2020-04-04 | Correct naming file from Mingw | Reckordp | |
| 2020-04-03 | Helper for link window's library | Reckordp | |
| 2020-04-01 | Avoid unnecessary `nextc()` recursion. | Yukihiro "Matz" Matsumoto | |
| 2020-03-30 | Fix NULL pointer dereferences in mrb_local_variables; fix #4955 | dearblue | |
| However, the behavior of `#call` on the method object of `local_variables` is not corrected. | |||
| 2020-03-08 | Add configuration guard for `MRB_DISABLE_STDIO` | dearblue | |
| ref #4576 and ref #4947 * Need MRBAPI functions without `MRB_DISABLE_STDIO`: * mrbgems/mruby-bin-debugger * mrbgems/mruby-bin-mirb * mrbgems/mruby-bin-mrbc * mrbgems/mruby-bin-mruby * mrbgems/mruby-bin-strip * Need `stdio.h`: * mrbgems/mruby-io * mrbgems/mruby-print * Need `snprintf()` in `stdio.h`: * mrbgems/mruby-pack * mrbgems/mruby-sprintf | |||
| 2020-03-08 | Remove unnecessary 'stdio.h'; ref #4947 | dearblue | |
| 'stdio.h' is included in 'mruby.h' ('mrbconf.h'). However, keep 'stdio.h' used by mruby-test. | |||
| 2020-03-08 | Improve conflict error message of mruby-bin-debugger; ref 87d1b2a91 | dearblue | |
| 2020-03-08 | Merge branch 'master' into BuildAndroid | Yukihiro "Matz" Matsumoto | |
| 2020-03-08 | Small refactoring on #4952 | Yukihiro "Matz" Matsumoto | |
| Fix the argument of `mrb_file_is_absolute_path()`. | |||
