[latex3-commits] [latex3/l3sys-query] main: Skip dequoting for entire arg list (0422ec0)
github at latex-project.org
github at latex-project.org
Fri Mar 8 10:10:47 CET 2024
Repository : https://github.com/latex3/l3sys-query
On branch : main
Link : https://github.com/latex3/l3sys-query/commit/0422ec0c66f7a3c7152a5a79f1d40bfce1583938
>---------------------------------------------------------------
commit 0422ec0c66f7a3c7152a5a79f1d40bfce1583938
Author: Joseph Wright <joseph at texdev.net>
Date: Fri Mar 8 09:10:47 2024 +0000
Skip dequoting for entire arg list
On Windows, quoting the whole list won't help,
whilst on *nix the shell will strip anyway.
>---------------------------------------------------------------
0422ec0c66f7a3c7152a5a79f1d40bfce1583938
l3sys-query.lua | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/l3sys-query.lua b/l3sys-query.lua
index 4edaf0d..6d0b0de 100755
--- a/l3sys-query.lua
+++ b/l3sys-query.lua
@@ -275,7 +275,7 @@ local function parse_args()
dequote(arg_i)
insert(t,arg_i)
end
- return dequote(concat(t," "))
+ return concat(t," ")
end
-- Examine all other arguments
More information about the latex3-commits
mailing list.