Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试学习 elisp 和 emacs 自定义。我设置了一个变量的参数列表。如何将此列表传递给函数,而不是直接给出参数。
提前致谢。
使用apply功能:
apply
(apply 'function arglist)
例如:
(apply '+ '(1 2 3 4)) ==> 10