summaryrefslogtreecommitdiffstats
path: root/TOOLS
diff options
context:
space:
mode:
authorivo <ivo@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-07-31 08:06:37 +0000
committerivo <ivo@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-07-31 08:06:37 +0000
commita5bda2e7af069683313c48cdbc3114884f17b8bd (patch)
tree39f4754d1aa6c1e61dfe2e7f78c816fc9b494378 /TOOLS
parent446403aa3d3b1425c7216f50a584914bbce6ba17 (diff)
downloadmpv-a5bda2e7af069683313c48cdbc3114884f17b8bd.tar.bz2
mpv-a5bda2e7af069683313c48cdbc3114884f17b8bd.tar.xz
replace ^I by $TAB now that TAB is global
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23958 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'TOOLS')
-rwxr-xr-xTOOLS/checktree.sh18
1 files changed, 9 insertions, 9 deletions
diff --git a/TOOLS/checktree.sh b/TOOLS/checktree.sh
index 80231c207e..a603efb4ca 100755
--- a/TOOLS/checktree.sh
+++ b/TOOLS/checktree.sh
@@ -363,37 +363,37 @@ if [ "$_stupid" = "yes" -a -n "$chfilelist" ]; then
for i in calloc malloc realloc memalign av_malloc av_mallocz faad_malloc \
lzo_malloc safe_malloc mpeg2_malloc _ogg_malloc; do
printhead "--> casting of void* $i()"
- grep $_grepopts "([ ]*[a-zA-Z_]\+[ ]*\*.*)[ ]*$i" $chfilelist
+ grep $_grepopts "([ $TAB]*[a-zA-Z_]\+[ $TAB]*\*.*)[ $TAB]*$i" $chfilelist
done
for i in "" signed unsigned; do
printhead "--> usage of sizeof($i char)"
- grep $_grepopts "sizeof[ ]*([ ]*$i[ ]*char[ ]*)" $chfilelist
+ grep $_grepopts "sizeof[ $TAB]*([ $TAB]*$i[ $TAB]*char[ $TAB]*)" $chfilelist
done
for i in int8_t uint8_t; do
printhead "--> usage of sizeof($i)"
- grep $_grepopts "sizeof[ ]*([ ]*$i[ ]*)" $chfilelist
+ grep $_grepopts "sizeof[ $TAB]*([ $TAB]*$i[ $TAB]*)" $chfilelist
done
printhead "--> usage of &&1"
- grep $_grepopts "&&[ ]*1" $chfilelist
+ grep $_grepopts "&&[ $TAB]*1" $chfilelist
printhead "--> usage of ||0"
- grep $_grepopts "||[ ]*0" $chfilelist
+ grep $_grepopts "||[ $TAB]*0" $chfilelist
# added a-fA-F_ to eliminate some false positives
printhead "--> usage of *0"
- grep $_grepopts "[a-zA-Z0-9)]\+[ ]*\*[ ]*0[^.0-9xa-fA-F_]" $chfilelist
+ grep $_grepopts "[a-zA-Z0-9)]\+[ $TAB]*\*[ $TAB]*0[^.0-9xa-fA-F_]" $chfilelist
printhead "--> usage of *1"
- grep $_grepopts "[a-zA-Z0-9)]\+[ ]*\*[ ]*1[^.0-9ea-fA-F_]" $chfilelist
+ grep $_grepopts "[a-zA-Z0-9)]\+[ $TAB]*\*[ $TAB]*1[^.0-9ea-fA-F_]" $chfilelist
printhead "--> usage of +0"
- grep $_grepopts "[a-zA-Z0-9)]\+[ ]*+[ ]*0[^.0-9xa-fA-F_]" $chfilelist
+ grep $_grepopts "[a-zA-Z0-9)]\+[ $TAB]*+[ $TAB]*0[^.0-9xa-fA-F_]" $chfilelist
printhead "--> usage of -0"
- grep $_grepopts "[a-zA-Z0-9)]\+[ ]*-[ ]*0[^.0-9xa-fA-F_]" $chfilelist
+ grep $_grepopts "[a-zA-Z0-9)]\+[ $TAB]*-[ $TAB]*0[^.0-9xa-fA-F_]" $chfilelist
fi
# -----------------------------------------------------------------------------