Remove & from old-style less combinators in the parser

This commit is contained in:
Tom MacWright 2012-10-21 21:08:11 -04:00
parent e1a484018f
commit 1eaf7e4fbf

View File

@ -722,7 +722,7 @@ carto.Parser = function Parser(env) {
var name, value, c = input.charAt(i);
save();
if (c === '.' || c === '#' || c === '&') { return }
if (c === '.' || c === '#') { return; }
if (name = $(this.variable) || $(this.property)) {
value = $(this.value);