From: Jorge Pereira Date: Fri, 3 May 2019 19:30:11 +0000 (-0300) Subject: conf2adoc: Fix the '-*- text -*-' regex X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=da1081f9584e091e293f6502b3a3ab07324dd985;p=thirdparty%2Ffreeradius-server.git conf2adoc: Fix the '-*- text -*-' regex --- diff --git a/scripts/asciidoc/conf2adoc b/scripts/asciidoc/conf2adoc index 96c5cc3f2e6..b5a9f6463db 100755 --- a/scripts/asciidoc/conf2adoc +++ b/scripts/asciidoc/conf2adoc @@ -52,7 +52,7 @@ sub process_file { # # Skip editor commands # - if (/^# -\*- text -\*-/) { + if (/^#\s*-\*- text -\*-/) { next; }