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