From c66ee9fd9c5a904d7b6dccad31083666279d51c4 Mon Sep 17 00:00:00 2001 From: David Vazquez Date: Tue, 8 Jan 2013 00:54:19 +0000 Subject: [PATCH] Indent use join instead of !reduce #'concat-two --- ecmalisp.lisp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ecmalisp.lisp b/ecmalisp.lisp index be51b2d..a683240 100644 --- 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))) -- 1.7.10.4