File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -472,7 +472,8 @@ namespace Sass {
472
472
473
473
Expression* Eval::operator ()(Function_Call* c)
474
474
{
475
- string full_name (c->name () + " [f]" );
475
+ string name (Util::normalize_underscores (c->name ()));
476
+ string full_name (name + " [f]" );
476
477
Arguments* args = c->arguments ();
477
478
if (full_name != " if[f]" ) {
478
479
args = static_cast <Arguments*>(args->perform (this ));
Original file line number Diff line number Diff line change @@ -1612,7 +1612,7 @@ namespace Sass {
1612
1612
Function_Call* Parser::parse_function_call ()
1613
1613
{
1614
1614
lex< identifier >();
1615
- string name (Util::normalize_underscores ( lexed) );
1615
+ string name (lexed);
1616
1616
ParserState source_position_of_call = pstate;
1617
1617
1618
1618
Function_Call* the_call = new (ctx.mem ) Function_Call (source_position_of_call, name, parse_arguments ());
You can’t perform that action at this time.
0 commit comments