hxtool: remove dead -q option

This was used to extract .txt documentation for QMP.  This was
changed to use the QAPI schema instead, so zap it.

Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Reviewed-by: Eric Blake <eblake@redhat.com>
Reviewed-by: Stefan Hajnoczi <stefanha@redhat.com>
Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>
This commit is contained in:
Paolo Bonzini 2017-07-07 17:46:46 +02:00 committed by Michael Tokarev
parent 9bd8e9330a
commit 44d619beb5
1 changed files with 1 additions and 45 deletions

View File

@ -7,7 +7,7 @@ hxtoh()
case $str in case $str in
HXCOMM*) HXCOMM*)
;; ;;
STEXI*|ETEXI*|SQMP*|EQMP*) flag=$(($flag^1)) STEXI*|ETEXI*) flag=$(($flag^1))
;; ;;
*) *)
test $flag -eq 1 && printf "%s\n" "$str" test $flag -eq 1 && printf "%s\n" "$str"
@ -45,12 +45,6 @@ hxtotexi()
fi fi
flag=0 flag=0
;; ;;
SQMP*|EQMP*)
if test $flag -eq 1 ; then
printf "line %d: syntax error: expected ETEXI, found '%s'\n" "$line" "$str" >&2
exit 1
fi
;;
DEFHEADING*) DEFHEADING*)
print_texi_heading "$(expr "$str" : "DEFHEADING(\(.*\))")" print_texi_heading "$(expr "$str" : "DEFHEADING(\(.*\))")"
;; ;;
@ -65,47 +59,9 @@ hxtotexi()
done done
} }
hxtoqmp()
{
IFS=
flag=0
line=1
while read -r str; do
case "$str" in
HXCOMM*)
;;
SQMP*)
if test $flag -eq 1 ; then
printf "line %d: syntax error: expected EQMP, found '%s'\n" "$line" "$str" >&2
exit 1
fi
flag=1
;;
EQMP*)
if test $flag -ne 1 ; then
printf "line %d: syntax error: expected SQMP, found '%s'\n" "$line" "$str" >&2
exit 1
fi
flag=0
;;
STEXI*|ETEXI*)
if test $flag -eq 1 ; then
printf "line %d: syntax error: expected EQMP, found '%s'\n" "$line" "$str" >&2
exit 1
fi
;;
*)
test $flag -eq 1 && printf '%s\n' "$str"
;;
esac
line=$((line+1))
done
}
case "$1" in case "$1" in
"-h") hxtoh ;; "-h") hxtoh ;;
"-t") hxtotexi ;; "-t") hxtotexi ;;
"-q") hxtoqmp ;;
*) exit 1 ;; *) exit 1 ;;
esac esac