Author: adam-guest
Date: 2008-03-28 18:06:32 +0000 (Fri, 28 Mar 2008)
New Revision: 1213
Modified:
trunk/debian/changelog
trunk/scripts/checkbashisms.pl
Log:
+ Temporarily disable the check for "complete" as it's too prone to false
positives
Modified: trunk/debian/changelog
===================================================================
--- trunk/debian/changelog 2008-03-28 06:47:37 UTC (rev 1212)
+++ trunk/debian/changelog 2008-03-28 18:06:32 UTC (rev 1213)
@@ -10,6 +10,8 @@
+ Improve the invalid function name test to not trigger on IFS="()"
+ Modify the brace expansion test to allow "${foo},${bar}"
+ Add another variation on the theme of shell wrapper detection (${1+"$@"})
+ + Temporarily disable the check for "complete" as it's too prone to false
+ positives
* debcheckout:
+ Tighten the "repository owner" regex for darcs.d.o to correctly check
http://darcs.d.o/~foo/bar/baz against user foo
Modified: trunk/scripts/checkbashisms.pl
===================================================================
--- trunk/scripts/checkbashisms.pl 2008-03-28 06:47:37 UTC (rev 1212)
+++ trunk/scripts/checkbashisms.pl 2008-03-28 18:06:32 UTC (rev 1213)
@@ -167,7 +167,7 @@
'/dev/(tcp|udp)' => q</dev/(tcp|udp)>,
'(?:^|\s+)suspend\s' => q<suspend>,
'(?:^|\s+)caller\s' => q<caller>,
- '(?:^|\s+)complete\s' => q<complete>,
+# '(?:^|\s+)complete\s' => q<complete>,
'(?:^|\s+)compgen\s' => q<compgen>,
'(?:^|\s+)declare\s' => q<declare>,
'(?:^|\s+)typeset\s' => q<typeset>,
--
To unsubscribe, send mail to [EMAIL PROTECTED]