From c0f0e743da5d40baf69d4330d8ccc0f4112a081f Mon Sep 17 00:00:00 2001 From: cbarratt Date: Sun, 26 Jan 2003 08:10:27 +0000 Subject: [PATCH] configure.pl: comments that delimit Conf settings must now start in column 1. This fixes bug when merging new Conf settings that have comments embedded in the value. --- configure.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.pl b/configure.pl index a544aaf..b66231e 100755 --- a/configure.pl +++ b/configure.pl @@ -642,7 +642,7 @@ sub ConfigParse my $comment = 1; my $allVars = {}; while ( ) { - if ( /^\s*#/ ) { + if ( /^#/ ) { if ( $comment ) { $out .= $_; } else { -- 2.20.1