From 94ce1f1312b0cf7f6d7055cbca65e015b4889b3d Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?J=C3=BCrg=20Lehni?= <juerg@scratchdisk.com>
Date: Thu, 27 Jun 2013 04:46:20 -0700
Subject: [PATCH] Fix include statements.

They're not to be indented.
---
 src/core/PaperScript.js | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/src/core/PaperScript.js b/src/core/PaperScript.js
index b05c630d..5d348a17 100644
--- a/src/core/PaperScript.js
+++ b/src/core/PaperScript.js
@@ -19,11 +19,11 @@
 // better minification and the future use of strict mode once it makes sense
 // in terms of performance.
 paper.PaperScope.prototype.PaperScript = new function() {
-	/*#*/ if (options.parser == 'acorn') {
-	/*#*/ include('../../components/acorn/acorn.min.js');
-	/*#*/ } else if (options.parser == 'esprima') {
-	/*#*/ include('../../components/esprima/esprima.min.js');
-	/*#*/ }
+/*#*/ if (options.parser == 'acorn') {
+/*#*/ include('../../components/acorn/acorn.min.js');
+/*#*/ } else if (options.parser == 'esprima') {
+/*#*/ include('../../components/esprima/esprima.min.js');
+/*#*/ }
 
 	// Operators to overload