1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* hash.c (env_each_value): Do not call env_values() twice.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@16590 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
knu 2008-05-25 15:42:14 +00:00
parent a93136879e
commit 49cd417578
3 changed files with 8 additions and 4 deletions

View file

@ -1,3 +1,7 @@
Mon May 26 00:37:16 2008 Akinori MUSHA <knu@iDaemons.org>
* hash.c (env_each_value): Do not call env_values() twice.
Sun May 25 17:54:36 2008 Yusuke Endoh <mame@tsg.ne.jp>
* compile.c (iseq_compile): set local_table for

2
hash.c
View file

@ -2117,7 +2117,7 @@ env_values(void)
static VALUE
env_each_value(VALUE ehash)
{
VALUE values = env_values();
VALUE values;
long i;
RETURN_ENUMERATOR(ehash, 0, 0);

View file

@ -1,7 +1,7 @@
#define RUBY_VERSION "1.9.0"
#define RUBY_RELEASE_DATE "2008-05-25"
#define RUBY_RELEASE_DATE "2008-05-26"
#define RUBY_VERSION_CODE 190
#define RUBY_RELEASE_CODE 20080525
#define RUBY_RELEASE_CODE 20080526
#define RUBY_PATCHLEVEL 0
#define RUBY_VERSION_MAJOR 1
@ -9,7 +9,7 @@
#define RUBY_VERSION_TEENY 0
#define RUBY_RELEASE_YEAR 2008
#define RUBY_RELEASE_MONTH 5
#define RUBY_RELEASE_DAY 25
#define RUBY_RELEASE_DAY 26
#ifdef RUBY_EXTERN
RUBY_EXTERN const char ruby_version[];