aboutsummaryrefslogtreecommitdiffstats
path: root/hxtool
diff options
context:
space:
mode:
Diffstat (limited to 'hxtool')
-rwxr-xr-xhxtool4
1 files changed, 2 insertions, 2 deletions
diff --git a/hxtool b/hxtool
index 885abe2..0fdbc64 100755
--- a/hxtool
+++ b/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