Code: Select all
(defun func-one (&rest params)
(let ((value-a ...)
(value-b ...)
(apply 'func-two (cons value-a (cons value-b params)))
...))
Code: Select all
(defun func-one (&rest params)
(let ((value-a ...)
(value-b ...)
(apply 'func-two (cons value-a (cons value-b params)))
...))