From 242e8a3bd682003a46cda0762b7f3f9593f07340 Mon Sep 17 00:00:00 2001 From: John-David Dalton Date: Mon, 20 May 2013 08:44:12 -0700 Subject: [PATCH] Fix typo left out of the "legacy include=defer" patch. Former-commit-id: cf8f3e072534a925bdf6a0ebdee65d1280f7d29e --- build.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.js b/build.js index a551a105f..e677ca85f 100755 --- a/build.js +++ b/build.js @@ -2000,7 +2000,7 @@ // replace `_.isPlainObject` with `shimIsPlainObject` source = source.replace( matchFunction(source, 'isPlainObject').replace(/[\s\S]+?var isPlainObject *= */, ''), - matchFunction(source, 'shimIsPlainObject').replace(/[\s\S]+?function shimIsPlainObject/, 'function').replace(/\s*$/, '') + matchFunction(source, 'shimIsPlainObject').replace(/[\s\S]+?function shimIsPlainObject/, 'function').replace(/\s*$/, ';\n') ); source = removeFunction(source, 'shimIsPlainObject');