From: David Vazquez Date: Wed, 26 Dec 2012 15:44:26 +0000 (+0000) Subject: Remove redundant semicolons X-Git-Url: http://repo.macrolet.net/gitweb/?a=commitdiff_plain;h=25b9b86398e4dd561f4eebc5067b5531173e0e3e;p=jscl.git Remove redundant semicolons --- diff --git a/lispstrack.lisp b/lispstrack.lisp index 730cad6..1f80270 100644 --- a/lispstrack.lisp +++ b/lispstrack.lisp @@ -646,11 +646,11 @@ (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)