From: Jeff
Subject: Re: Concatenating to a string
Date: 
Message-ID: <cdp4v4$ka7@odbk17.prod.google.com>
Thank you very much =) Beautiful. I figured there would be something.

Lowell Kirsh wrote:
> you should check out the string tutorial at cl-cookbook.sf.net. It
> explains exactly what you want.
>
> Lowell
>
> Jeff wrote:
>
> > I was wondering if there was an in-place concatenation of a string.
I
> > really would rather not do:
> >
> > (demacro my-concat (string char)
> > `(setf ,string (concatenate 'string ,string (string ,char))))
> > Is there a better way to accomplish what I want? Thanks!
> > 
> > Jeff
> >