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:
parent
20a5505349
commit
4943b46ae7
2 changed files with 7 additions and 0 deletions
|
@ -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
|
||||
|
|
|
@ -312,6 +312,8 @@ class RubyLex
|
|||
"r" => "/",
|
||||
"w" => "]",
|
||||
"W" => "]",
|
||||
"i" => "]",
|
||||
"I" => "]",
|
||||
"s" => ":"
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue