From a479ec6bcd26813b3048e28e47f2510571e928ac Mon Sep 17 00:00:00 2001 From: Joaquim Date: Sat, 15 Nov 2025 01:58:40 +0000 Subject: [PATCH] Fix a reversion in parse_helper() two commits afyer 1.30.0 --- src/common_options.jl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/common_options.jl b/src/common_options.jl index 195c4e1f8..85a84cc37 100644 --- a/src/common_options.jl +++ b/src/common_options.jl @@ -1658,8 +1658,8 @@ function parse_helper(cmd::String, d::Dict, symbs::VMs, opt::String, sep='/')::T # Helper function to the parse_?() global options. (SHOW_KWARGS[]) && return (print_kwarg_opts(symbs, "(Common option not yet expanded)"),"") opt_val::String = "" - if ((val = hlp_desnany_arg2str(d, symbs; sep=sep)) !== "") - opt_val = string(opt, val) + if ((val = find_in_dict(d, symbs, true)[1]) !== nothing) + opt_val = opt * arg2str(val, sep) cmd *= opt_val end return cmd, opt_val