From 4101b8e937eeebfb7e6fb7f09ec81c45f8165a58 Mon Sep 17 00:00:00 2001 From: John-David Dalton Date: Thu, 14 Feb 2013 09:03:47 -0800 Subject: [PATCH] Remove `reInsertVariable` cleanup in build/pre-compile.js. Former-commit-id: 1fa75107e8c43362b57021292e26397145e62e39 --- build/pre-compile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/pre-compile.js b/build/pre-compile.js index 67097afc3..5db74035d 100644 --- a/build/pre-compile.js +++ b/build/pre-compile.js @@ -247,7 +247,7 @@ }); // remove whitespace from `_.template` related regexes - source = source.replace(/(?:reEmptyString\w+|reInsertVariable) *=.+/g, function(match) { + source = source.replace(/reEmptyString\w+ *=.+/g, function(match) { return match.replace(/ |\\n/g, ''); });