check-keymaps.sh revision 7d701b0e26f96c279ef9ba8e4ef82fc4fca56acf
[ -e "$KEYLIST" ] || {
exit 1
}
missing=$(join -v 2 <(awk '{print tolower(substr($1,5))}' $KEYLIST | sort -u) <(awk '{print $2}' extras/keymap/keymaps/*|sort -u))
[ -z "$missing" ] || {
exit 1
}
# check that all maps referred to in $RULES exist
# ignore inline mappings
[ "$m" = "${m#0x}" ] || continue
exit 1
}
exit 1
}
done