[SCM] Git repository for devscripts branch, master, updated. v2.12.4-207-g8035f02

James McCoy jamessan at debian.org
Sun May 5 05:30:48 UTC 2013


The following commit has been merged in the master branch:
commit 21df31816889050d278a9ca24ec5431ced3d17fa
Author: Raphael Geissert <geissert at debian.org>
Date:   Sun Feb 24 12:48:14 2013 +0100

    checkbashisms: fix FP on $_ check when it is preceded by a backslash
    
    Signed-off-by: Raphael Geissert <geissert at debian.org>
    Signed-off-by: James McCoy <jamessan at debian.org>

diff --git a/scripts/checkbashisms.pl b/scripts/checkbashisms.pl
index fd0b1be..44369d4 100755
--- a/scripts/checkbashisms.pl
+++ b/scripts/checkbashisms.pl
@@ -672,7 +672,7 @@ sub init_hashes {
 	qr'(?:^|\s+)TMOUT='           => q<TMOUT=>,
 	qr'\$\{?TIMEFORMAT\}?\b'      => q<$TIMEFORMAT>,
 	qr'(?:^|\s+)TIMEFORMAT='      => q<TIMEFORMAT=>,
-	qr'(?<!\$)\$\{?_\}?\b'	      => q<$_>,
+	qr'(?<![$\\])\$\{?_\}?\b'     => q<$_>,
 	qr'(?:^|\s+)GLOBIGNORE='      => q<GLOBIGNORE=>,
 	qr'<<<'                       => q<\<\<\< here string>,
 	$LEADIN . qr'echo\s+(?:-[^e\s]+\s+)?\"[^\"]*(\\[abcEfnrtv0])+.*?[\"]' => q<unsafe echo with backslash>,

-- 
Git repository for devscripts



More information about the devscripts-devel mailing list