Skip to content

Commit 25e5b66

Browse files
committed
merge revision(s) 40664:
* signal.c (rb_f_kill): fixes typo. s/HAS_KILLPG/HAVE_KILLPG/. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_2_0_0@40675 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
1 parent baf52fa commit 25e5b66

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

ChangeLog

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
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+
15
Sun May 12 04:23:06 2013 Nobuyoshi Nakada <nobu@ruby-lang.org>
26

37
* parse.y (parser_peek_variable_name): treat invalid global, class,

signal.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -363,7 +363,7 @@ ruby_default_signal(int sig)
363363
VALUE
364364
rb_f_kill(int argc, VALUE *argv)
365365
{
366-
#ifndef HAS_KILLPG
366+
#ifndef HAVE_KILLPG
367367
#define killpg(pg, sig) kill(-(pg), (sig))
368368
#endif
369369
int negative = 0;

version.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#define RUBY_VERSION "2.0.0"
22
#define RUBY_RELEASE_DATE "2013-05-12"
3-
#define RUBY_PATCHLEVEL 192
3+
#define RUBY_PATCHLEVEL 193
44

55
#define RUBY_RELEASE_YEAR 2013
66
#define RUBY_RELEASE_MONTH 5

0 commit comments

Comments
 (0)