projects
/
jscl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b373038
)
Indent use join instead of !reduce #'concat-two
author
David Vazquez
<davazp@gmail.com>
Tue, 8 Jan 2013 00:54:19 +0000
(
00:54
+0000)
committer
David Vazquez
<davazp@gmail.com>
Tue, 8 Jan 2013 00:54:19 +0000
(
00:54
+0000)
ecmalisp.lisp
patch
|
blob
|
history
diff --git
a/ecmalisp.lisp
b/ecmalisp.lisp
index
be51b2d
..
a683240
100644
(file)
--- a/
ecmalisp.lisp
+++ b/
ecmalisp.lisp
@@
-450,7
+450,7
@@
;;; Like CONCAT, but prefix each line with four spaces.
(defun indent (&rest string)
- (let ((input (!reduce #'concat string "")))
+ (let ((input (join string)))
(let ((output "")
(index 0)
(size (length input)))