OSDN Git Service

Check for more 'indent -kr' whitespace details.
authorMichael Niedermayer <michaelni@gmx.at>
Fri, 8 Oct 2010 19:11:36 +0000 (19:11 +0000)
committerMichael Niedermayer <michaelni@gmx.at>
Fri, 8 Oct 2010 19:11:36 +0000 (19:11 +0000)
Originally committed as revision 25417 to svn://svn.ffmpeg.org/ffmpeg/trunk

tools/patcheck

index 733272e..ce07031 100755 (executable)
@@ -95,6 +95,9 @@ hiegrep2 '\.channel_layouts *= *\(' 'const' 'missing const for channel_layouts a
 hiegrep2 "$ERE_TYPES" '(static|av_|ff_|typedef|:\+[^a-zA-Z_])' 'Non static with no ff_/av_ prefix' $*
 
 hiegrep ':\+[^}#]*else' 'missing } prior to else' $*
+hiegrep '(if|while|for)\(' 'missing whitespace between keyword and (' $*
+hiegrep '(else|do){'       'missing whitespace between keyword and {' $*
+hiegrep '}(else|while)'    'missing whitespace between } and keyword' $*
 
 #FIXME this should print the previous statement maybe
 hiegrep ':\+  *{ *$' '{ should be on the same line as the related previous statement' $*