summaryrefslogtreecommitdiffstats
path: root/parse.y
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2003-09-24 07:42:06 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2003-09-24 07:42:06 +0000
commit6b4fc65d148cc0e823fc63ebd3734ec8681d241f (patch)
tree47a4c3918de050e02a08be940b47d705f39e2c6d /parse.y
parentc254894118bada52ee171b20dac259003f2a3904 (diff)
downloadruby-6b4fc65d148cc0e823fc63ebd3734ec8681d241f.tar.gz
ruby-6b4fc65d148cc0e823fc63ebd3734ec8681d241f.tar.xz
ruby-6b4fc65d148cc0e823fc63ebd3734ec8681d241f.zip
* parse.y (str_xquote): do not prepend escapes in
backqoute literals. [ruby-list:38409] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4589 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'parse.y')
-rw-r--r--parse.y2
1 files changed, 1 insertions, 1 deletions
diff --git a/parse.y b/parse.y
index 9671ff97f..7b3d2e6a7 100644
--- a/parse.y
+++ b/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),