From 4c1ce7075b2e9e888728748809fdf3294ceea797 Mon Sep 17 00:00:00 2001 From: cloudhead Date: Fri, 26 Feb 2010 14:47:32 -0500 Subject: [PATCH] eat tabs --- lib/less/parser.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/less/parser.js b/lib/less/parser.js index 173f0cb8..135aef18 100644 --- a/lib/less/parser.js +++ b/lib/less/parser.js @@ -109,7 +109,7 @@ function $(tok, root) { while (i <= endIndex) { c = input.charCodeAt(i); - if (! (c === 32 || c === 10)) { break } + if (! (c === 32 || c === 10 || c === 9)) { break } i++; } return match.length === 1 ? match[0] : match;