Skip to content

Commit

Permalink
string-formatter delimiters should be included with ~@? instead of ~A…
Browse files Browse the repository at this point in the history
… so that format directives are processed re ADWolf:#1207
  • Loading branch information
bobbysmith007 committed Jan 17, 2014
1 parent 2bd6b72 commit 979de18
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 @@ -433,7 +433,7 @@ binds *print-pretty* to nil
(setf values (alexandria:ensure-list values))
(when values
(let* ((*print-pretty* (pretty? o))
(new-part (format nil "~@[~A~]~?" (when (has-written? o) (delimiter o))
(new-part (format nil "~@[~@?~]~?" (when (has-written? o) (delimiter o))
(first values) (rest values))))
(setf (has-written? o) t)
(setf (value o) (concatenate 'string (value o) new-part))
Expand Down

0 comments on commit 979de18

Please sign in to comment.