Remove redundant semicolons
authorDavid Vazquez <davazp@gmail.com>
Wed, 26 Dec 2012 15:44:26 +0000 (15:44 +0000)
committerDavid Vazquez <davazp@gmail.com>
Wed, 26 Dec 2012 15:44:26 +0000 (15:44 +0000)
lispstrack.lisp

index 730cad6..1f80270 100644 (file)
 
 (defun ls-compile-block (sexps env fenv)
   (join-trailing
-   (remove (lambda (x)
-             (or (null x)
-                 (and (stringp x)
-                      (zerop (length x)))))
-           (mapcar (lambda (x) (ls-compile x env fenv))  sexps))
+   (remove-if (lambda (x)
+                (or (null x)
+                    (and (stringp x)
+                         (zerop (length x)))))
+              (mapcar (lambda (x) (ls-compile x env fenv))  sexps))
    (concat ";" *newline*)))
 
 (defmacro define-compilation (name args &rest body)