فهرست منبع

Add a missing newline after comments with SquiLu code.

mingodad 12 سال پیش
والد
کامیت
2a862de081
1فایلهای تغییر یافته به همراه1 افزوده شده و 1 حذف شده
  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();