less 4.0.0 → 4.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -815,9 +815,9 @@ var Parser = function Parser(context, imports, fileInfo) {
815
815
  parserInput.restore();
816
816
  return;
817
817
  }
818
- if (!lookups && !hasParens) {
819
- // This isn't a valid mixin call
820
- parserInput.restore('Unrecognized input. Possibly missing \'(\' in mixin call.');
818
+ if (inValue && !lookups && !hasParens) {
819
+ // This isn't a valid in-value mixin call
820
+ parserInput.restore();
821
821
  return;
822
822
  }
823
823
  if (!inValue && parsers.important()) {