| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2017-04-03 | Unify `else` clause style | Yukihiro "Matz" Matsumoto | |
| 2017-04-03 | Remove spaces around parens | Yukihiro "Matz" Matsumoto | |
| 2017-02-08 | Fixed mixture of signed/unsigned integers | Yukihiro "Matz" Matsumoto | |
| in mrbgems/mruby-bin-debugger. | |||
| 2016-09-28 | Removed trailing spaces | Nobuyoshi Nakada | |
| 2016-07-31 | intptr_t should be used instead of uint32_t to hold a pointer. | Guo Xiao | |
| Fix warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] | |||
| 2015-12-26 | remove execute bit from mrbgems/mruby-bin-debugger files | Yukihiro "Matz" Matsumoto | |
| 2015-12-23 | fix bug that doesn't stop program when execute next command. | Yuhei Okazaki | |
| 2015-12-23 | fixed next command's comment. | Yuhei Okazaki | |
| 2015-12-23 | add next command to mrdb. | Yuhei Okazaki | |
| 2015-12-22 | fix build on VS2012 | Yasuhiro Matsumoto | |
| 2015-11-27 | include changed from by quotes ("") to by brackets (<>); close #3032 | Yukihiro "Matz" Matsumoto | |
| 2015-09-01 | Typo in mruby-bin-debugger/mrbgem.rake | Zachary Scott | |
| 2015-07-02 | Fix incorrect memory allocation of mrdb_state_new. | Blaž Hrastnik | |
| As detected in a Coverity scan. https://scan8.coverity.com/reports.htm#v26153/p11375/fileInstanceId=6844472&defectInstanceId=2516000&mergedDefectId=75866 | |||
| 2015-06-19 | Fix typos in documentation and error messages [skip ci] | Anton Davydov | |
| 2015-04-18 | Suppress warnings generated by -Wwrite-strings | Kouhei Sutou | |
| Here are suppressed warnings: src/fmt_fp.c: In function 'fmt_fp': src/fmt_fp.c:124:16: warning: initialization discards 'const' qualifier from pointer target type char *ss = (t&32)?"inf":"INF"; ^ src/fmt_fp.c:125:17: warning: assignment discards 'const' qualifier from pointer target type if (y!=y) ss=(t&32)?"nan":"NAN"; ^ mrbgems/mruby-string-ext/src/string.c: In function 'mrb_str_succ_bang': mrbgems/mruby-string-ext/src/string.c:302:27: warning: assignment discards 'const' qualifier from pointer target type if (e == b) prepend = "1"; ^ mrbgems/mruby-string-ext/src/string.c:305:27: warning: assignment discards 'const' qualifier from pointer target type if (e == b) prepend = "a"; ^ mrbgems/mruby-string-ext/src/string.c:308:27: warning: assignment discards 'const' qualifier from pointer target type if (e == b) prepend = "A"; ^ mrbgems/mruby-bin-mruby/tools/mruby/mruby.c: In function 'main': mrbgems/mruby-bin-mruby/tools/mruby/mruby.c:213:13: warning: assignment discards 'const' qualifier from pointer target type cmdline = args.cmdline ? args.cmdline : "-"; ^ mrbgems/mruby-bin-debugger/tools/mrdb/cmdbreak.c: In function 'print_breakpoint': mrbgems/mruby-bin-debugger/tools/mrdb/cmdbreak.c:159:3: warning: initialization discards 'const' qualifier from pointer target type char* enable_letter[] = {BREAK_INFO_MSG_DISABLE, BREAK_INFO_MSG_ENABLE}; ^ mrbgems/mruby-bin-debugger/tools/mrdb/cmdbreak.c:159:3: warning: initialization discards 'const' qualifier from pointer target type | |||
| 2015-03-31 | fix maximum value of the index when access breakpoints. | Yuhei Okazaki | |
| 2015-01-19 | Merge pull request #2680 from sdottaka/add-fflush | Yukihiro "Matz" Matsumoto | |
| mrdb, mirb: Add fflush() so that a external program can read output imme... | |||
| 2015-01-18 | mrdb: fix crash when stepping into Proc.call | sdottaka | |
| How to reproduce: ``` cat a.rb Proc.new { 1 }.call echo step | mrdb a.rb ``` | |||
| 2015-01-10 | Merge pull request #2697 from cubicdaiya/use-sizeof | Yukihiro "Matz" Matsumoto | |
| Use sizeof() instead of strlen(). | |||
| 2015-01-03 | Removed duplicated declarations. | Tatsuhiko Kubo | |
| * `mrb_show_version()` * `mrb_show_copyright()` | |||
| 2015-01-03 | Use sizeof() instead of strlen(). | Tatsuhiko Kubo | |
| 2015-01-03 | fixed error-handling for mrb_open(). | Tatsuhiko Kubo | |
| When mrb_open() is called again, it is not checked. | |||
| 2015-01-03 | Add fflush() (2) | sdottaka | |
| 2015-01-01 | Remove redundant NULL checks for mrb_malloc(). | Tatsuhiko Kubo | |
| 2014-12-20 | mrdb: fix that break command cannot handle Windows paths | sdottaka | |
| Before fix: ``` $ mrdb c:\tmp\b.rb (c:\tmp\b.rb:1) break c:\tmp\b.rb:3 Class name 'c' is invalid. ``` After fix: ``` $ mrdb c:\tmp\b.rb (c:\tmp\b.rb:1) break c:\tmp\b.rb:3 Breakpoint 1: file c:\tmp\b.rb, line 3. ``` | |||
| 2014-12-19 | mrdb, mirb: Add fflush() so that a external program can read output immediately. | sdottaka | |
| 2014-11-29 | closing to Local Scope | murase_syuka | |
| 2014-11-27 | adhoc fix for pass build | murase_syuka | |
| 2014-11-26 | Merge pull request #2652 from cremno/mrdb-add-missing-null-termination | Yukihiro "Matz" Matsumoto | |
| mrdb: add missing null-termination | |||
| 2014-11-26 | free memory used by breakpoints | cremno | |
| 2014-11-26 | free return value of dirname() | cremno | |
| 2014-11-25 | Merge pull request #2644 from cremno/mrdb-minor-changes | Hiroshi Mimaki | |
| mrdb: minor changes | |||
| 2014-11-25 | add missing null-termination | cremno | |
| 2014-11-22 | use mrb_str_xxx_lit for mrdb. | Tatsuhiko Kubo | |
| 2014-11-20 | remove const type qualifier | cremno | |
| clang 3.5.0 with -Wextra produces a -Wignored-qualifiers diagnostic. | |||
| 2014-11-20 | don't convert function pointer to object pointer | cremno | |
| 2014-11-20 | remove cast | cremno | |
| C99+TC3, 7.19.7.1p2: [...] the fgetc function obtains that character as an unsigned char converted to an int [...] | |||
| 2014-11-20 | fix heap-use-after-free | cremno | |
| 2014-11-18 | Add mruby debugger (mrdb) | mimaki | |
