Will it affect the assessment of special forms? Example: (function 'function-name) . If this does not work, why?
(function 'function-name)
'name is read (quotation mark name).
FUNCTION expects a function name, a list (setf some-name), or a lambda expression.
(quotation name) is neither one nor the other. So it is a mistake to use it.