Skip to content
  • Havoc Pennington's avatar
    fix indentation, tabs, and trailing whitespace · 941791d4
    Havoc Pennington authored
    As reported by:
    
    FILES=`find -name "*.[hc]" -o -name "*.js" | grep -v -- '-introspection.c'`
    
    for F in $FILES ; do
        COUNT=`egrep '[ ]+$' $F | wc -l`
        if test x"$COUNT" != x0 ; then
            echo "$F: $COUNT trailing spaces"
        fi
        COUNT=`grep '       ' $F | wc -l`
        if test x"$COUNT" != x0 ; then
            echo "$F: $COUNT tabs"
        fi
    done
    941791d4