Skip to content

Commit 309b930

Browse files
committed
merge revision(s) r47820: [Backport ruby#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
1 parent 2ccf728 commit 309b930

File tree

3 files changed

+16
-8
lines changed

3 files changed

+16
-8
lines changed

ChangeLog

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
Wed Oct 15 22:46:52 2014 NAKAMURA Usaku <[email protected]>
2+
3+
* error.c: update exception tree. [DOC]
4+
reported by @hemge via twitter.
5+
16
Wed Sep 24 02:30:55 2014 Nobuyoshi Nakada <[email protected]>
27

38
* parse.y (parse_ident): just after a label, new expression should

error.c

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1740,29 +1740,32 @@ syserr_eqq(VALUE self, VALUE exc)
17401740
* * LoadError
17411741
* * NotImplementedError
17421742
* * SyntaxError
1743+
* * SecurityError
17431744
* * SignalException
17441745
* * Interrupt
17451746
* * StandardError -- default for +rescue+
17461747
* * ArgumentError
1747-
* * IndexError
1748-
* * StopIteration
1748+
* * EncodingError
1749+
* * FiberError
17491750
* * IOError
17501751
* * EOFError
1752+
* * IndexError
1753+
* * KeyError
1754+
* * StopIteration
17511755
* * LocalJumpError
17521756
* * NameError
17531757
* * NoMethodError
17541758
* * RangeError
17551759
* * FloatDomainError
17561760
* * RegexpError
17571761
* * RuntimeError -- default for +raise+
1758-
* * SecurityError
17591762
* * SystemCallError
17601763
* * Errno::*
1761-
* * SystemStackError
17621764
* * ThreadError
17631765
* * TypeError
17641766
* * ZeroDivisionError
17651767
* * SystemExit
1768+
* * SystemStackError
17661769
* * fatal -- impossible to rescue
17671770
*/
17681771

version.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
#define RUBY_VERSION "2.1.4"
2-
#define RUBY_RELEASE_DATE "2014-09-24"
3-
#define RUBY_PATCHLEVEL 247
2+
#define RUBY_RELEASE_DATE "2014-10-15"
3+
#define RUBY_PATCHLEVEL 248
44

55
#define RUBY_RELEASE_YEAR 2014
6-
#define RUBY_RELEASE_MONTH 9
7-
#define RUBY_RELEASE_DAY 24
6+
#define RUBY_RELEASE_MONTH 10
7+
#define RUBY_RELEASE_DAY 15
88

99
#include "ruby/version.h"
1010

0 commit comments

Comments
 (0)