Remove indexing of struct members

This commit is contained in:
Mikaël Bouillot 2017-04-05 19:44:27 +02:00
parent a657388b02
commit a9e176e01a

View file

@ -104,7 +104,7 @@ case $cmd in
parse-defs)
tmp=`mktemp -d`
git cat-file blob "$1" > $tmp/$2
ctags -x --c-kinds=+p $tmp/$2 | awk '{print $1" "$2" "$3}'
ctags -x --c-kinds=+p-m $tmp/$2 | awk '{print $1" "$2" "$3}'
rm $tmp/$2
rmdir $tmp
;;