From ea5482e37c6f265ddfc22b2a6aea47e5a4d764b5 Mon Sep 17 00:00:00 2001 From: Mischa POSLAWSKY Date: Tue, 20 Feb 2018 01:05:31 +0100 Subject: [PATCH] tools: strip multiline comments in light.css Outcommented code was added in commit v1.10-43-g61fa0d2d3c (2017-07-17) [keys: even smaller keyboard style for mobile]. --- tools/stripcss | 1 + 1 file changed, 1 insertion(+) diff --git a/tools/stripcss b/tools/stripcss index 4b41f01..69156c4 100755 --- a/tools/stripcss +++ b/tools/stripcss @@ -4,6 +4,7 @@ use warnings; while (<>) { s!\s*/\*.*\*/\Z!!; # comments + s!/\*.*!! .. s!.*?/\*!! and next; # multiline comments s/^\s*//; # indentation and empty lines s/\h+/ /g; # alignment s/:\K\h//; # separators -- 2.30.0