• R/O
  • HTTP
  • SSH
  • HTTPS

List of commits

Frequently used words (click to add to your profile)

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

mrubyを超漢字で動作させる


RSS
Rev. Time Author
65710ef 2012-04-27 12:47:25 Yukihiro "Matz" Matsumoto

Merge pull request #62 from javier/patch-1

Adding a prerequisites section

549cb6b 2012-04-27 01:03:38 Yukihiro "Matz" Matsumoto

Merge pull request #59 from mattn/fix_issue56

fix #56

a7288fd 2012-04-26 23:11:11 javier ramírez

Adding a prerequisites section to avoid the "bison: command not found" error

cdf2a28 2012-04-26 22:47:42 Yukihiro "Matz" Matsumoto

Merge pull request #58 from mattn/use_mrb_free

use mrb_free().

f964759 2012-04-26 22:36:32 Patrick Hogan

Remove unused variable in khash

Signed-off-by: Patrick Hogan <pbhogan@gmail.com>

27cfbbe 2012-04-26 22:36:32 Patrick Hogan

size_t is unsigned and can never be < 0

Removed to silence warning.

Signed-off-by: Patrick Hogan <pbhogan@gmail.com>

4b85151 2012-04-26 22:36:32 Patrick Hogan

mrb_read_irep should take const char *

Signed-off-by: Patrick Hogan <pbhogan@gmail.com>

ec27c18 2012-04-26 22:36:32 Patrick Hogan

Fix a few casting warnings.

Signed-off-by: Patrick Hogan <pbhogan@gmail.com>

a408ba2 2012-04-26 22:36:32 Patrick Hogan

Remove unused ret argument from kh_put.

It doesn't appear to serve any purpose and allows removing warning about various unused variables littered around.

Signed-off-by: Patrick Hogan <pbhogan@gmail.com>

a4c9853 2012-04-26 22:36:32 Patrick Hogan

More switch statement cleanup.

Signed-off-by: Patrick Hogan <pbhogan@gmail.com>

132dd25 2012-04-26 22:36:32 Patrick Hogan

Remove a bunch of unused variables.

Removed or commented out to stop compiler whining about them.

Signed-off-by: Patrick Hogan <pbhogan@gmail.com>

4b99def 2012-04-26 22:36:32 Patrick Hogan

Clean up switch statements.

Some formatting and add default label to silence warning about unhanded cases.

Signed-off-by: Patrick Hogan <pbhogan@gmail.com>

db20b51 2012-04-26 22:36:32 Patrick Hogan

mrb_ary_dup is only used by mrb_ary_sort which is removed by #if 0

Signed-off-by: Patrick Hogan <pbhogan@gmail.com>

45b3695 2012-04-26 11:29:30 mattn

fix #56

de7a596 2012-04-26 11:14:19 mattn

use mrb_free().

7b3d628 2012-04-26 11:13:45 Yukihiro Matsumoto

use mrb_float instead of double

5aa1c95 2012-04-26 09:05:02 Yukihiro Matsumoto

parse.y: skip() should not ignore end-of-file; fix #55

0486c48 2012-04-26 08:43:05 Yukihiro Matsumoto

do not use strdup(3) that use malloc(3) inside; should use mrb_malloc()

c6f5f63 2012-04-26 06:07:41 Yukihiro Matsumoto

supeclass type check prohibits class definition without superclass specified

e26bf08 2012-04-25 22:57:12 Yukihiro Matsumoto

tools/mruby: multiple -e should concatenate command line args

140b9ca 2012-04-25 11:50:21 Yukihiro Matsumoto

Merge branch 'master' of github.com:mruby/mruby

8694604 2012-04-25 11:50:03 Yukihiro Matsumoto

disclose mrb_top_self() and use it in mruby.c

68b76fc 2012-04-25 11:39:59 Yukihiro "Matz" Matsumoto

Merge pull request #50 from mattn/e_flag

add -e flag.

0a0bc72 2012-04-25 11:38:35 Yukihiro "Matz" Matsumoto

Merge pull request #49 from mattn/exit_code

return 0 if code is generated.

bc41445 2012-04-25 10:16:38 mattn

add -e flag.

2c64c71 2012-04-25 09:43:10 mattn

return 0 if code is generated.

7edd776 2012-04-24 22:48:29 Yukihiro "Matz" Matsumoto

Merge pull request #48 from pbhogan/call-dfree-on-rdata-at-gc

Call dfree member on RData / MRB_TT_DATA when collected

f41aae7 2012-04-24 22:39:32 Patrick Hogan

Call dfree member on RData/MRB_TT_DATA when collected

Signed-off-by: Patrick Hogan <pbhogan@gmail.com>

8ab46d2 2012-04-24 18:27:35 Yukihiro Matsumoto

superclass should be a class

f9339f5 2012-04-24 18:25:26 Yukihiro Matsumoto

EXPR_BEG by keywords is a start point of commands; backport r35457 from CRuby