projects
/
jscl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f4699ac
)
Remove redundant semicolons
author
David Vazquez
<davazp@gmail.com>
Wed, 26 Dec 2012 15:44:26 +0000
(15:44 +0000)
committer
David Vazquez
<davazp@gmail.com>
Wed, 26 Dec 2012 15:44:26 +0000
(15:44 +0000)
lispstrack.lisp
patch
|
blob
|
history
diff --git
a/lispstrack.lisp
b/lispstrack.lisp
index
730cad6
..
1f80270
100644
(file)
--- 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)