From 30717936b6d8e6761ff131453b2fecc377bf8e4e Mon Sep 17 00:00:00 2001 From: ko1 Date: Tue, 10 Jul 2007 10:39:39 +0000 Subject: * hash.c (rb_hash_lookup): added. this function is similar to rb_hash_aref(), but doesn't call Hash#default when no entry exists. * include/ruby/intern.h: ditto. * insnhelper.ci (lfp_svar_get): use rb_hash_lookup(). git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@12734 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'ChangeLog') diff --git a/ChangeLog b/ChangeLog index bb91a8c63..58b562db8 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,13 @@ +Tue Jul 10 19:34:45 2007 Koichi Sasada + + * hash.c (rb_hash_lookup): added. this function is similar to + rb_hash_aref(), but doesn't call Hash#default when no entry + exists. + + * include/ruby/intern.h: ditto. + + * insnhelper.ci (lfp_svar_get): use rb_hash_lookup(). + Tue Jul 10 19:16:28 2007 Koichi Sasada * eval.c, insnhelper.ci, vm.c: change cref index (-1 -> 2). -- cgit