1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* lib/irb/ext/save-history.rb: suppress warning: method redefined;

discarding old save_history=.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@54576 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
naruse 2016-04-14 10:06:41 +00:00
parent 31a3a862d6
commit af24631af6
2 changed files with 6 additions and 0 deletions

View file

@ -1,3 +1,8 @@
Thu Apr 14 19:02:41 2016 NARUSE, Yui <naruse@ruby-lang.org>
* lib/irb/ext/save-history.rb: suppress warning: method redefined;
discarding old save_history=.
Thu Apr 14 14:58:14 2016 Nobuyoshi Nakada <nobu@ruby-lang.org> Thu Apr 14 14:58:14 2016 Nobuyoshi Nakada <nobu@ruby-lang.org>
* ext/tk/tkutil/tkutil.c (tk_hash_kv): the third argument can be * ext/tk/tkutil/tkutil.c (tk_hash_kv): the third argument can be

View file

@ -27,6 +27,7 @@ module IRB
IRB.conf[:SAVE_HISTORY] IRB.conf[:SAVE_HISTORY]
end end
remove_method :save_history=
# Sets <code>IRB.conf[:SAVE_HISTORY]</code> to the given +val+ and calls # Sets <code>IRB.conf[:SAVE_HISTORY]</code> to the given +val+ and calls
# #init_save_history with this context. # #init_save_history with this context.
# #