mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* parse.y (str_xquote): do not prepend escapes in
backqoute literals. [ruby-list:38409] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@4589 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
9cdd5fcb62
commit
fca2b319b5
2 changed files with 7 additions and 2 deletions
|
@ -65,6 +65,11 @@ Thu Sep 18 22:43:20 2003 Yukihiro Matsumoto <matz@ruby-lang.org>
|
|||
|
||||
* eval.c (proc_invoke): should update "result" for orphans.
|
||||
|
||||
Thu Sep 18 20:33:03 2003 Tietew <tietew-ml-ruby-list@tietew.net>
|
||||
|
||||
* parse.y (str_xquote): do not prepend escapes in
|
||||
backqoute literals. [ruby-list:38409]
|
||||
|
||||
Thu Sep 18 20:30:17 2003 Tanaka Akira <akr@m17n.org>
|
||||
|
||||
* lib/pathname.rb: update document.
|
||||
|
|
2
parse.y
2
parse.y
|
@ -2934,7 +2934,7 @@ regx_options()
|
|||
enum string_type {
|
||||
str_squote = (0),
|
||||
str_dquote = (STR_FUNC_EXPAND),
|
||||
str_xquote = (STR_FUNC_ESCAPE|STR_FUNC_EXPAND),
|
||||
str_xquote = (STR_FUNC_EXPAND),
|
||||
str_regexp = (STR_FUNC_REGEXP|STR_FUNC_ESCAPE|STR_FUNC_EXPAND),
|
||||
str_sword = (STR_FUNC_QWORDS),
|
||||
str_dword = (STR_FUNC_QWORDS|STR_FUNC_EXPAND),
|
||||
|
|
Loading…
Reference in a new issue