我想设置PROGRAM-ARGS的start-process从列表中.
喜欢,
(start-process process-name "*foobar*" process-path (append some-args (list (concat "the" "other" "arg"))))
Run Code Online (Sandbox Code Playgroud)
但这会产生"......不是字符串"的错误,因为start-process只接受字符串参数.
我怎么解决这个问题?