merge revision(s) 33625:

* ext/readline/readline.c (Init_readline): fix wrong condition.


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_9_3@34476 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
naruse 2012-02-08 01:52:42 +00:00
parent a9500bbccd
commit 1a4d128124
3 changed files with 6 additions and 2 deletions

View file

@ -1,3 +1,7 @@
Wed Feb 8 10:52:36 2012 NARUSE, Yui <naruse@ruby-lang.org>
* ext/readline/readline.c (Init_readline): fix wrong condition.
Wed Feb 8 10:50:11 2012 Naohisa Goto <ngotogenome@gmail.com>
* test/ruby/test_rubyoptions.rb (test_script_from_stdin): slave pty

View file

@ -1632,7 +1632,7 @@ Init_readline()
if (history_get(history_get_offset_func(0)) == NULL) {
history_get_offset_func = history_get_offset_0;
}
#if !defined HAVE_CLEAR_HISTORY
#if defined HAVE_CLEAR_HISTORY
clear_history();
#else
{

View file

@ -1,5 +1,5 @@
#define RUBY_VERSION "1.9.3"
#define RUBY_PATCHLEVEL 59
#define RUBY_PATCHLEVEL 60
#define RUBY_RELEASE_DATE "2012-02-08"
#define RUBY_RELEASE_YEAR 2012