Skip to content

Commit

Permalink
actually ignore-nil-strings when told to
Browse files Browse the repository at this point in the history
  • Loading branch information
bobbysmith007 committed Jul 26, 2011
1 parent 012616d commit 7e603a8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion collectors.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
(t (princ-to-string delimiter))))
(flet ((p (item)
(let ((item (typecase item
(string item)
((or null string) item)
(T (princ-to-string item)))))
(when (or print-empty? (and item (plusp (length item))))
(when (and printed? delimiter) (write-sequence delimiter s))
Expand Down

0 comments on commit 7e603a8

Please sign in to comment.