From 8a27e4ffe7d5fa1e85ea3a81049e443704282254 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Sven=20Sch=C3=B6ling?= Date: Mon, 27 Jul 2015 15:55:36 +0200 Subject: [PATCH] Bugfix: Kommentarhandling in Inifile MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Das ist aber immernoch Schrott, weil die Latex order # enthält, und trotzdem rausgegrillt wird. --- SL/Inifile.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SL/Inifile.pm b/SL/Inifile.pm index 91af9fc79..6ecb41f79 100644 --- a/SL/Inifile.pm +++ b/SL/Inifile.pm @@ -60,7 +60,7 @@ sub new { s/\s*#.*$//; s/^\s*//; } else { - next if m/#/; + next if m/^\s*#/; } next unless $_; -- 2.20.1