File tree Expand file tree Collapse file tree 1 file changed +1
-5
lines changed Expand file tree Collapse file tree 1 file changed +1
-5
lines changed Original file line number Diff line number Diff line change @@ -102,10 +102,8 @@ namespace Sass {
102
102
try {
103
103
String_Constant* s = ARG (" $string" , String_Constant);
104
104
str = s->value ();
105
- str = unquote (str);
106
105
String_Constant* i = ARG (" $insert" , String_Constant);
107
106
std::string ins = i->value ();
108
- ins = unquote (ins);
109
107
double index = ARGVAL (" $index" );
110
108
size_t len = UTF_8::code_point_count (str, 0 , str.size ());
111
109
@@ -148,9 +146,7 @@ namespace Sass {
148
146
String_Constant* s = ARG (" $string" , String_Constant);
149
147
String_Constant* t = ARG (" $substring" , String_Constant);
150
148
std::string str = s->value ();
151
- str = unquote (str);
152
149
std::string substr = t->value ();
153
- substr = unquote (substr);
154
150
155
151
size_t c_index = str.find (substr);
156
152
if (c_index == std::string::npos) {
@@ -175,7 +171,7 @@ namespace Sass {
175
171
double end_at = ARGVAL (" $end-at" );
176
172
String_Quoted* ss = Cast<String_Quoted>(s);
177
173
178
- std::string str = unquote (s->value ());
174
+ std::string str (s->value ());
179
175
180
176
size_t size = utf8::distance (str.begin (), str.end ());
181
177
You can’t perform that action at this time.
0 commit comments