[movitz-cvs] CVS movitz/losp/muerte

ffjeld ffjeld at common-lisp.net
Sun Apr 1 19:05:08 UTC 2007


Update of /project/movitz/cvsroot/movitz/losp/muerte
In directory clnet:/tmp/cvs-serv9951

Modified Files:
	arithmetic-macros.lisp 
Log Message:
Remove unreachable code.


--- /project/movitz/cvsroot/movitz/losp/muerte/arithmetic-macros.lisp	2007/03/20 22:40:41	1.17
+++ /project/movitz/cvsroot/movitz/losp/muerte/arithmetic-macros.lisp	2007/04/01 19:05:07	1.18
@@ -10,7 +10,7 @@
 ;;;; Author:        Frode Vatvedt Fjeld <frodef at acm.org>
 ;;;; Created at:    Sat Jul 17 13:42:46 2004
 ;;;;                
-;;;; $Id: arithmetic-macros.lisp,v 1.17 2007/03/20 22:40:41 ffjeld Exp $
+;;;; $Id: arithmetic-macros.lisp,v 1.18 2007/04/01 19:05:07 ffjeld Exp $
 ;;;;                
 ;;;;------------------------------------------------------------------
 
@@ -43,9 +43,7 @@
      (:testb 1 :cl)))
 
 (define-compiler-macro + (&whole form &rest operands &environment env)
-  (flet ((term (x) (if (and nil (symbolp x))
-		       (gensym (format nil "term-~A-" x))
-		     (gensym "term-"))))
+  (flet ((term (x) (gensym "term-")))
     (case (length operands)
       (0 0)
       (1 (first operands))




More information about the Movitz-cvs mailing list