* lib/irb/completion.rb: reverted r47163.

because another case can't be show completion target.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@47166 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
hsbt 2014-08-13 03:02:26 +00:00
Родитель d1b21e8ef3
Коммит 643551f0d3
2 изменённых файлов: 6 добавлений и 1 удалений

Просмотреть файл

@ -1,3 +1,8 @@
Wed Aug 13 11:54:41 2014 SHIBATA Hiroshi <shibata.hiroshi@gmail.com>
* lib/irb/completion.rb: reverted r47163.
because another case can't be show completion target.
Wed Aug 13 11:17:00 2014 Shimpei Makimoto <github@makimoto.org>
* lib/irb.rb: Prevent irb from crashing when exception with

Просмотреть файл

@ -222,7 +222,7 @@ module IRB
end
if Readline.respond_to?("basic_word_break_characters=")
Readline.basic_word_break_characters= "\t\n\\`><=;|&{("
Readline.basic_word_break_characters= " \t\n`><=;|&{("
end
Readline.completion_append_character = nil
Readline.completion_proc = IRB::InputCompletor::CompletionProc