Introduced the "funcall" macro (which really doesn't do anything - only CL needs...
authorVladimir Sedach <vsedach@gmail.com>
Tue, 10 Feb 2009 00:01:55 +0000 (17:01 -0700)
committerVladimir Sedach <vsedach@gmail.com>
Tue, 10 Feb 2009 00:01:55 +0000 (17:01 -0700)
src/special-forms.lisp

index f088b66..f9b259a 100644 (file)
@@ -420,6 +420,9 @@ lambda-list::=
 (defpsmacro defsetf (access-fn &rest args)
   `(,(if (= (length args) 3) 'defsetf-long 'defsetf-short) ,access-fn ,@args))
 
+(defpsmacro funcall (&rest arg-form)
+  arg-form)
+
 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
 ;;; macros
 (defmacro with-temp-macro-environment ((var) &body body)