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

* lib/irb/ruby-lex.rb: Add handling for %i and %I quoting to irb

Patch by flori [ruby-core:49550] [Bug #7392] [Github Issue #157]


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@38570 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
zzak 2012-12-23 06:25:22 +00:00
parent 20a5505349
commit 4943b46ae7
2 changed files with 7 additions and 0 deletions

View file

@ -1,3 +1,8 @@
Sun Dec 23 15:25:00 2012 Zachary Scott <zachary@zacharyscott.net>
* lib/irb/ruby-lex.rb: Add handling for %i and %I quoting to irb
Patch by flori [ruby-core:49550] [Bug #7392] [Github Issue #157]
Sun Dec 23 15:05:48 2012 Nobuyoshi Nakada <nobu@ruby-lang.org>
* vm_eval.c (rb_check_funcall_with_hook): rb_check_funcall with hook

View file

@ -312,6 +312,8 @@ class RubyLex
"r" => "/",
"w" => "]",
"W" => "]",
"i" => "]",
"I" => "]",
"s" => ":"
}