Skip to content

Commit

Permalink
Fixed irb bug where SIGQUIT at prompt caused ArgumentError
Browse files Browse the repository at this point in the history
  • Loading branch information
brentr committed Sep 15, 2016
1 parent 7030b99 commit 32a5c16
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 9 deletions.
8 changes: 2 additions & 6 deletions lib/irb.rb
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,7 @@
# $Date: 2008/06/10 22:01:32 $
# by Keiju ISHITSUKA(keiju@ishitsuka.com)
#
# --
#
#stores most recent exception -- brent@mbari.org 7/15/03
#use __send__ rather than call method in output_value to avoid security error
# -- brent@mbari.org 10/12/11
# -- brent@mbari.org 9/15/16
#
#
require "e2mmap"
Expand Down Expand Up @@ -172,7 +168,7 @@ def eval_input
exc = nil
rescue Interrupt => exc
rescue SystemExit, SignalException => exc
raise
raise exc
rescue ThreadError => exc
3.times {Thread.pass}
rescue Exception => exc
Expand Down
6 changes: 3 additions & 3 deletions version.h
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
#define RUBY_VERSION "1.8.7"
#define RUBY_RELEASE_DATE "2016-9-01"
#define RUBY_RELEASE_DATE "2016-9-15"
#define RUBY_VERSION_CODE 187
#define RUBY_RELEASE_CODE 20160901
#define RUBY_RELEASE_CODE 20160915
#define RUBY_PATCHLEVEL 352

#define RUBY_VERSION_MAJOR 1
#define RUBY_VERSION_MINOR 8
#define RUBY_VERSION_TEENY 7
#define RUBY_RELEASE_YEAR 2016
#define RUBY_RELEASE_MONTH 9
#define RUBY_RELEASE_DAY 1
#define RUBY_RELEASE_DAY 15

#ifdef RUBY_EXTERN
RUBY_EXTERN const char ruby_version[];
Expand Down

0 comments on commit 32a5c16

Please sign in to comment.