mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
merge revision(s) r47820: [Backport #10330]
* error.c: update exception tree. [DOC] reported by @hemge via twitter. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_2_1@47944 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
b247743048
commit
7f6aaba7c0
3 changed files with 16 additions and 8 deletions
|
|
@ -1,3 +1,8 @@
|
|||
Wed Oct 15 22:46:52 2014 NAKAMURA Usaku <usa@ruby-lang.org>
|
||||
|
||||
* error.c: update exception tree. [DOC]
|
||||
reported by @hemge via twitter.
|
||||
|
||||
Wed Sep 24 02:30:55 2014 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||
|
||||
* parse.y (parse_ident): just after a label, new expression should
|
||||
|
|
|
|||
11
error.c
11
error.c
|
|
@ -1740,14 +1740,18 @@ syserr_eqq(VALUE self, VALUE exc)
|
|||
* * LoadError
|
||||
* * NotImplementedError
|
||||
* * SyntaxError
|
||||
* * SecurityError
|
||||
* * SignalException
|
||||
* * Interrupt
|
||||
* * StandardError -- default for +rescue+
|
||||
* * ArgumentError
|
||||
* * IndexError
|
||||
* * StopIteration
|
||||
* * EncodingError
|
||||
* * FiberError
|
||||
* * IOError
|
||||
* * EOFError
|
||||
* * IndexError
|
||||
* * KeyError
|
||||
* * StopIteration
|
||||
* * LocalJumpError
|
||||
* * NameError
|
||||
* * NoMethodError
|
||||
|
|
@ -1755,14 +1759,13 @@ syserr_eqq(VALUE self, VALUE exc)
|
|||
* * FloatDomainError
|
||||
* * RegexpError
|
||||
* * RuntimeError -- default for +raise+
|
||||
* * SecurityError
|
||||
* * SystemCallError
|
||||
* * Errno::*
|
||||
* * SystemStackError
|
||||
* * ThreadError
|
||||
* * TypeError
|
||||
* * ZeroDivisionError
|
||||
* * SystemExit
|
||||
* * SystemStackError
|
||||
* * fatal -- impossible to rescue
|
||||
*/
|
||||
|
||||
|
|
|
|||
|
|
@ -1,10 +1,10 @@
|
|||
#define RUBY_VERSION "2.1.4"
|
||||
#define RUBY_RELEASE_DATE "2014-09-24"
|
||||
#define RUBY_PATCHLEVEL 247
|
||||
#define RUBY_RELEASE_DATE "2014-10-15"
|
||||
#define RUBY_PATCHLEVEL 248
|
||||
|
||||
#define RUBY_RELEASE_YEAR 2014
|
||||
#define RUBY_RELEASE_MONTH 9
|
||||
#define RUBY_RELEASE_DAY 24
|
||||
#define RUBY_RELEASE_MONTH 10
|
||||
#define RUBY_RELEASE_DAY 15
|
||||
|
||||
#include "ruby/version.h"
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue