Commit Graph

116 Commits

Author SHA1 Message Date
Yukihiro "Matz" Matsumoto 0e2c8ec57c Merge pull request #44 from unak/__end__
``__END__'' must start at the beginning of the line.
2012-04-23 01:17:14 -07:00
NAKAMURA Usaku 9a5e93bfcb ``__END__'' must start at the beginning of the line. 2012-04-23 17:08:44 +09:00
Yukihiro "Matz" Matsumoto daedb2b9de Merge pull request #43 from unak/__end__
Support ``__END__'' as the mark of the end of a script (ISO Ruby).
2012-04-22 23:49:53 -07:00
NAKAMURA Usaku 6db869c33d Support ``__END__'' as the mark of the end of a script (ISO Ruby). 2012-04-23 14:42:05 +09:00
mimaki c80487561f Merge branch 'master' of github.com:mruby/mruby
Conflicts:
	src/variable.c
2012-04-23 11:51:47 +09:00
mimaki 835443614d add file header 2012-04-23 11:46:16 +09:00
Yukihiro "Matz" Matsumoto 3f0b98762d Merge pull request #42 from takahashim/fix-clean-mrblib
Force to remove mrblib/mrblib.d
2012-04-22 18:50:39 -07:00
takahashim 359fe9dfdc force to remove mrblib/mrblib.d 2012-04-23 10:20:36 +09:00
snaba 1f87caa2c7 Merge branch 'master' of github.com:mruby/mruby 2012-04-23 09:42:29 +09:00
Yukihiro "Matz" Matsumoto cf6e7966d3 Merge pull request #35 from fceller/master
simple fix for underflow / capture errors and warnings
2012-04-22 16:58:19 -07:00
Yukihiro "Matz" Matsumoto 7feb68eb90 Merge pull request #37 from k-tsj/fix-proc-segv
Fix SEGV when calling Proc object created by Proc.new
2012-04-22 16:55:49 -07:00
Yukihiro "Matz" Matsumoto 484a5f6779 Merge pull request #39 from MobiRuby/make_clean
Fixed to forget to remove some files on 'make clean'
2012-04-22 16:45:29 -07:00
Yukihiro Matsumoto a639479c27 update .gitignore based on pull-request #36 2012-04-23 08:43:16 +09:00
Yukihiro "Matz" Matsumoto 7fdb5634b1 Merge pull request #40 from w-x-l/master
Ignore files created from building
2012-04-22 16:37:56 -07:00
Wuffers Lightwolf afefad8cd5 Ignore files made from build 2012-04-22 15:33:12 -05:00
Yuichiro MASUI f9d4a5a02b Fixed to forget to remove some files on 'make clean' 2012-04-23 03:06:01 +09:00
Kazuki Tsujimoto 5859a204fe Fix SEGV when calling Proc object created by Proc.new 2012-04-22 19:23:44 +09:00
Frank Celler 844d7d49b3 allow errors & warning to be captured 2012-04-22 08:53:55 +02:00
Frank Celler 9760b7f126 simple fix for underflow 2012-04-22 07:40:31 +02:00
Frank Celler fc125524b2 only increment position, if no error has occured 2012-04-21 23:30:34 +02:00
Yukihiro "Matz" Matsumoto 2b9ed5acd1 Merge pull request #31 from lucasdicioccio/master
simple typo in a comment
2012-04-21 05:08:43 -07:00
lucas dicioccio 669cfc7f66 typo in the node's comment 2012-04-21 12:02:12 +02:00
Yukihiro Matsumoto 9676edda66 replace st.[ch] to remove SIZEOF_ST_INDEX_T 2012-04-21 18:59:02 +09:00
Yukihiro Matsumoto 748d762e85 object instance variable do not use st.c 2012-04-21 12:42:43 +09:00
Yukihiro Matsumoto 9718925f13 remove plain README file 2012-04-21 01:32:19 +09:00
Yukihiro Matsumoto 43ca69ed81 remove Japanese files 2012-04-21 01:32:02 +09:00
Yukihiro Matsumoto 71961c0b10 update README.ja.md 2012-04-21 01:30:26 +09:00
Yukihiro Matsumoto 984e188bbe update licensing issue and how to contribute 2012-04-21 01:21:41 +09:00
Yukihiro Matsumoto 2cc0623ae7 update ISO link URL from Japanese page 2012-04-21 01:03:44 +09:00
Yukihiro Matsumoto 9b3a4fd8a4 avoid integer overflow 2012-04-21 01:01:07 +09:00
Yukihiro "Matz" Matsumoto f086dbd536 Merge pull request #25 from pbhogan/remove-unnecessary-check
Remove unnecessary check for size_t < 0
2012-04-20 08:58:19 -07:00
Yukihiro Matsumoto 3ea69ab4bd Merge branch 'master' of github.com:mruby/mruby 2012-04-21 00:51:29 +09:00
Yukihiro Matsumoto c138d7ef0a use %zd for size_t argument 2012-04-21 00:51:20 +09:00
Patrick Hogan 758096334f Remove unnecessary check for size_t < 0
size_t can never be negative since it is an unsigned integer according to standard. Removed to silence warning.

Signed-off-by: Patrick Hogan <pbhogan@gmail.com>
2012-04-20 10:29:01 -05:00
Yukihiro "Matz" Matsumoto 431b45156e Merge pull request #22 from knf/patch-3
Made text edits to README.md to improve clarity.
2012-04-20 08:23:48 -07:00
Yukihiro "Matz" Matsumoto a0ab6af79d Merge pull request #24 from takahashim/fix-git-command
fix git commands
2012-04-20 08:22:58 -07:00
Nicholas e4afcf6c43 Made text edits to README.md to improve clarity. 2012-04-20 10:18:08 -05:00
takahashim f7f31188be fix git commands 2012-04-21 00:15:39 +09:00
Yukihiro "Matz" Matsumoto 36be1d6270 Merge pull request #18 from pbhogan/master
#undef DEBUG for compatibility with environments that define DEBUG (like Xcode)
2012-04-20 07:55:36 -07:00
Yukihiro "Matz" Matsumoto 90ef60d96c Merge pull request #19 from ranmocy/master
fixed statement alignment
2012-04-20 07:54:02 -07:00
Ranmocy 9e32b5152e fixed statement alignment 2012-04-20 22:39:46 +08:00
Yukihiro "Matz" Matsumoto e40e55da71 Merge pull request #17 from pbhogan/master
Fixed typos in usage message for mruby tool.
2012-04-20 07:33:12 -07:00
Patrick Hogan 4cb86f87a1 #undef DEBUG for compatibility with environments that define DEBUG (like Xcode)
Signed-off-by: Patrick Hogan <pbhogan@gmail.com>
2012-04-20 09:32:35 -05:00
Patrick Hogan c8c90d3644 Fixed typos in usage message. 2012-04-20 09:22:30 -05:00
Yukihiro Matsumoto 2dd08ef2ec remove prototype for mrb_define_variable() 2012-04-20 23:19:13 +09:00
Yukihiro Matsumoto 3c1b347834 remove dependency to SIZEOF_LONG/LONG_LONG 2012-04-20 22:46:07 +09:00
Yukihiro Matsumoto 2c28d29cec remove SIZEOF_FLOAT/DOUBLE 2012-04-20 22:39:22 +09:00
Yukihiro Matsumoto 0f0ad36c5f remove dependency to SIZEOF___INT64 2012-04-20 22:39:02 +09:00
Yukihiro Matsumoto 1f78ba77a2 remove SIZEOF_SHORT 2012-04-20 22:37:21 +09:00
Yukihiro Matsumoto 59a85eef46 Merge branch 'master' of github.com:mruby/mruby 2012-04-20 22:34:21 +09:00