The h5(p)*c parser retains escaped whitespace character (#4967)

This commit is contained in:
Scot Breitenfeld
2024-10-18 09:03:42 -07:00
committed by GitHub
parent bfcb91652a
commit 610648efd2
3 changed files with 12 additions and 0 deletions
+4
View File
@@ -253,6 +253,10 @@ for arg in $@ ; do
qarg='"'"$arg"'"'
qargs="$qargs $qarg"
;;
*\ *)
qarg=$arg
qargs="$qargs $qarg"
;;
*)
if [ -s "$arg" ] ; then
ext=`expr "$arg" : '.*\(\..*\)'`