I am a bit confused about when to NOT use the quote before a symbol.
For example if I want to remove a function from my image:
> (fmakunbound 'func-name)
FUNC-NAME
but, if i create a function for doing the same thing, it looks like this:
(defun remove-func (symbol)
(fmakunbound symbol))
In the second example, why does the fmakunbound
in the remove-func
function not need the quoted symbol?