Kyle Meyer writes: > What about returning to the boundp/fboundp combination that was > in place > before ab1ce2a75? > > (and (boundp 'my/foo) > (fboundp my/foo)) ; => nil > > (let ((my/foo #'ignore)) > (and (boundp 'my/foo) > (fboundp my/foo))) ; => t Sounds good to me! I've modified the patch to reflect this change.