From 593808ddf9ffdba46d2548603fbdc4dd074cb54c Mon Sep 17 00:00:00 2001 From: matz Date: Thu, 20 Feb 2003 10:09:31 +0000 Subject: * eval.c (rb_thread_remove): thread may die in the process of rb_thread_die(). this change was suggested by Rudi Cilibrasi . * eval.c (rb_thread_start_0): main thread swapped by fork() may terminate rb_thread_start_0() successfully. call ruby_stop(0); this change too was suggested by Rudi. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@3514 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- parse.y | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'parse.y') diff --git a/parse.y b/parse.y index b848fe71e..ea581fa47 100644 --- a/parse.y +++ b/parse.y @@ -3700,7 +3700,7 @@ yylex() } pushback(c); if (ISDIGIT(c)) { - rb_warn("no . floating literal anymore; put 0 before dot"); + rb_warning("no . floating literal anymore; put 0 before dot"); } lex_state = EXPR_DOT; return '.'; -- cgit