I want to extend adjoin, but want to maintain it full flexibility. So somehow I need to pass any keyword arguments that come in through to a call to adjoin I make in my version:
(defun my-adjoin (item list &key key test test-not)
(do-something
(adjoin item list WHAT-DO-I-PUT-HERE?)))
Or is this putting me into macro territory?Last edited by ramarren on , edited 1 time in total. Reason: Added code tags