Browse Source

Add a missing newline after comments with SquiLu code.

mingodad 13 years ago
parent
commit
2a862de081
1 changed files with 1 additions and 1 deletions
  1. 1 1
      SquiLu-ext/pp.nut

+ 1 - 1
SquiLu-ext/pp.nut

@@ -33,7 +33,7 @@ function preprocess(file_name){
 
 
 	new_code = new_code.gsub("(/%*SquiLu(.-)SquiLu%*/)", function(m, m2) {
-			return format("%s}====})\n%s\nputs({===={", m, m2)
+			return format("%s\n}====})\n%s\nputs({===={", m, m2)
 		});
 
 	local buffer = blob();