mirror of
https://github.com/ruby/ruby.git
synced 2025-09-20 11:03:58 +02:00
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:
parent
a9500bbccd
commit
1a4d128124
3 changed files with 6 additions and 2 deletions
|
@ -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>
|
Wed Feb 8 10:50:11 2012 Naohisa Goto <ngotogenome@gmail.com>
|
||||||
|
|
||||||
* test/ruby/test_rubyoptions.rb (test_script_from_stdin): slave pty
|
* test/ruby/test_rubyoptions.rb (test_script_from_stdin): slave pty
|
||||||
|
|
|
@ -1632,7 +1632,7 @@ Init_readline()
|
||||||
if (history_get(history_get_offset_func(0)) == NULL) {
|
if (history_get(history_get_offset_func(0)) == NULL) {
|
||||||
history_get_offset_func = history_get_offset_0;
|
history_get_offset_func = history_get_offset_0;
|
||||||
}
|
}
|
||||||
#if !defined HAVE_CLEAR_HISTORY
|
#if defined HAVE_CLEAR_HISTORY
|
||||||
clear_history();
|
clear_history();
|
||||||
#else
|
#else
|
||||||
{
|
{
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
#define RUBY_VERSION "1.9.3"
|
#define RUBY_VERSION "1.9.3"
|
||||||
#define RUBY_PATCHLEVEL 59
|
#define RUBY_PATCHLEVEL 60
|
||||||
|
|
||||||
#define RUBY_RELEASE_DATE "2012-02-08"
|
#define RUBY_RELEASE_DATE "2012-02-08"
|
||||||
#define RUBY_RELEASE_YEAR 2012
|
#define RUBY_RELEASE_YEAR 2012
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue