Skip to content

Commit

Permalink
Merge pull request sass#821 from xzyfer/feat/unknown-directive-bubbling
Browse files Browse the repository at this point in the history
Correctly bubble unknown directives
  • Loading branch information
xzyfer committed Jan 7, 2015
2 parents 8f07d6e + 5fa33c2 commit 26737f7
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions expand.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,6 @@ namespace Sass {
Statement* Expand::operator()(At_Rule* a)
{
Block* ab = a->block();
selector_stack.push_back(0);
Selector* as = a->selector();
Expression* av = a->value();
if (as) as = as->perform(contextualize->with(0, env, backtrace));
Expand All @@ -171,7 +170,6 @@ namespace Sass {
as,
bb);
if (av) aa->value(av);
selector_stack.pop_back();
return aa;
}

Expand Down

0 comments on commit 26737f7

Please # to comment.