diff options
| author | shyouhei <shyouhei@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2007-06-08 08:40:23 +0000 |
|---|---|---|
| committer | shyouhei <shyouhei@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2007-06-08 08:40:23 +0000 |
| commit | b27cbbab474270d43df769aec9bcbfee624fb602 (patch) | |
| tree | af585bcf568b76007effe6a69cc5504782b9874a | |
| parent | a9b3755409663be0e660d09eb4598f976cf86670 (diff) | |
| download | ruby-b27cbbab474270d43df769aec9bcbfee624fb602.tar.gz ruby-b27cbbab474270d43df769aec9bcbfee624fb602.tar.xz ruby-b27cbbab474270d43df769aec9bcbfee624fb602.zip | |
* eval.c (rb_eval_cmd): just return if no exceptions.
[ruby-dev:30820]
git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_8_6@12482 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
| -rw-r--r-- | ChangeLog | 5 | ||||
| -rw-r--r-- | eval.c | 2 | ||||
| -rw-r--r-- | version.h | 2 |
3 files changed, 7 insertions, 2 deletions
@@ -1,3 +1,8 @@ +Wed May 30 04:18:37 2007 Nobuyoshi Nakada <nobu@ruby-lang.org> + + * eval.c (rb_eval_cmd): just return if no exceptions. + [ruby-dev:30820] + Tue May 29 11:01:06 2007 Nobuyoshi Nakada <nobu@ruby-lang.org> * win32/win32.c (rb_w32_opendir): store attributes of the second @@ -1862,7 +1862,7 @@ rb_eval_cmd(cmd, arg, level) POP_TAG(); POP_FRAME(); - jump_tag_but_local_jump(state, val); + if (state) jump_tag_but_local_jump(state, val); return val; } @@ -2,7 +2,7 @@ #define RUBY_RELEASE_DATE "2007-06-07" #define RUBY_VERSION_CODE 186 #define RUBY_RELEASE_CODE 20070607 -#define RUBY_PATCHLEVEL 32 +#define RUBY_PATCHLEVEL 33 #define RUBY_VERSION_MAJOR 1 #define RUBY_VERSION_MINOR 8 |
