We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 52fffe6 commit 32a109eCopy full SHA for 32a109e
parser.cpp
@@ -874,7 +874,8 @@ namespace Sass {
874
Expression* term1 = parse_term();
875
// if it's a singleton, return it directly; don't wrap it
876
if (!(peek< exactly<'+'> >(position) ||
877
- peek< sequence< negate< number >, exactly<'-'> > >(position)))
+ peek< sequence< negate< number >, exactly<'-'> > >(position)) ||
878
+ peek< identifier >(position))
879
{ return term1; }
880
881
vector<Expression*> operands;
0 commit comments