mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-04 08:13:54 -06:00
Fix hxtool.
When converting from hx to texi format, hxtool (or to be more precise sh which interprets hxtool) used standard shell expansion of wildcards while writing lines to the output. Thus, something like "Password: ********" looked very different in the generated documentation. The patch disables this unwanted wildcard expansion. Signed-off-by: Stefan Weil <weil@mail.berlios.de>
This commit is contained in:
parent
6ad8702a77
commit
7d69c52ed8
1 changed files with 2 additions and 2 deletions
4
hxtool
4
hxtool
|
@ -26,10 +26,10 @@ hxtotexi()
|
|||
STEXI*|ETEXI*) flag=$(($flag^1))
|
||||
;;
|
||||
DEFHEADING*)
|
||||
echo $(expr "$str" : "DEFHEADING(\(.*\))")
|
||||
echo "$(expr "$str" : "DEFHEADING(\(.*\))")"
|
||||
;;
|
||||
*)
|
||||
test $flag -eq 1 && echo $str
|
||||
test $flag -eq 1 && echo "$str"
|
||||
;;
|
||||
esac
|
||||
done
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue