<html><head></head><body style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space; "><div>I was surprised by the following compiler warning in CCL 1.4 (r13131), given the fboundp check:</div><div><br></div><div><div><blockquote type="cite"><div><font class="Apple-style-span" color="#000000">? (defun test () (when (fboundp 'some-fn) (funcall 'some-fn)))</font></div><div><font class="Apple-style-span" color="#000000">;Compiler warnings :</font></div><div><font class="Apple-style-span" color="#000000">;   In test: Undefined function some-fn</font></div><div><font class="Apple-style-span" color="#000000">test</font></div></blockquote><div><br></div><div>No warning was issued in CCL 1.3.</div><div><br></div><div>BTW, the following doesn't issue the warning:</div><br><blockquote type="cite"><div><font class="Apple-style-span" color="#000000">? (defun test () (when (fboundp 'some-fn) (funcall (fdefinition 'some-fn))))</font></div><div><font class="Apple-style-span" color="#000000">test </font></div></blockquote><div><br></div><br><div><br></div></div></div></body></html>