From: Olof-Joachim Frahm Date: Fri, 17 May 2013 22:38:58 +0000 (+0200) Subject: Add EQ as function so that #'EQ works. X-Git-Url: http://repo.macrolet.net/gitweb/?a=commitdiff_plain;h=35f9b78191116ec9c2304b6358396627be46c612;p=jscl.git Add EQ as function so that #'EQ works. --- diff --git a/src/boot.lisp b/src/boot.lisp index e25d70f..e33051c 100644 --- a/src/boot.lisp +++ b/src/boot.lisp @@ -106,6 +106,7 @@ (defun truncate (x &optional (y 1)) (floor (/ x y))) +(defun eq (x y) (eq x y)) (defun eql (x y) (eq x y)) (defun not (x) (if x nil t))