File tree Expand file tree Collapse file tree 3 files changed +6
-2
lines changed Expand file tree Collapse file tree 3 files changed +6
-2
lines changed Original file line number Diff line number Diff line change
1
+ Sun May 12 22:42:25 2013 KOSAKI Motohiro <kosaki.motohiro@gmail.com>
2
+
3
+ * signal.c (rb_f_kill): fixes typo. s/HAS_KILLPG/HAVE_KILLPG/.
4
+
1
5
Sun May 12 04:23:06 2013 Nobuyoshi Nakada <nobu@ruby-lang.org>
2
6
3
7
* parse.y (parser_peek_variable_name): treat invalid global, class,
Original file line number Diff line number Diff line change @@ -363,7 +363,7 @@ ruby_default_signal(int sig)
363
363
VALUE
364
364
rb_f_kill (int argc , VALUE * argv )
365
365
{
366
- #ifndef HAS_KILLPG
366
+ #ifndef HAVE_KILLPG
367
367
#define killpg (pg , sig ) kill(-(pg), (sig))
368
368
#endif
369
369
int negative = 0 ;
Original file line number Diff line number Diff line change 1
1
#define RUBY_VERSION "2.0.0"
2
2
#define RUBY_RELEASE_DATE "2013-05-12"
3
- #define RUBY_PATCHLEVEL 192
3
+ #define RUBY_PATCHLEVEL 193
4
4
5
5
#define RUBY_RELEASE_YEAR 2013
6
6
#define RUBY_RELEASE_MONTH 5
You can’t perform that action at this time.
0 commit comments