Signed-off-by: Daniel Kochmański <daniel@turtleware.eu>
<para>Note that the conversion between lisp arguments and
<acronym>FFI</acronym> types is automatic. Note also that
- <function>et:c-inline</function> cannot be used in interpreted or
+ <function>ffi:c-inline</function> cannot be used in interpreted or
bytecompiled code!</para>
</refsect1>
(defmacro c-inline (args arg-types ret-type &body others)
`(error "The special form c-inline cannot be used in the interpreter: ~A"
(list (list ,@args) ',arg-types ',ret-type ,@others)))
- (defmacro c-progn (&rest body)
+ (defmacro c-progn (args &rest body)
+ (declare (ignore args))
'(error "The special form c-progn cannot be used in the interpreter.")))
(defmacro definline (fun arg-types type code)