I want to set PROGRAM-ARGS of start-process from a list.
Like,
(start-process process-name "*foobar*" process-path (append some-args (list (concat "the" "other" "arg"))))
But this makes error that "... is not string", because start-process accepts only string arguments.
How can I solve this?
start-process, instead offoobarandsome-argsand"the" "other" "arg"?