[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: gEDA: gnetlist ERROR: Stack overflow



Stefan Petersen <spe@stacken.kth.se> writes:

   But you cheat a bit. At least out of my perspective. I want to return a
   string and your function displays it. If I replace display with
   string-append, string-append will be called as many times as before. But I
   just found a solution (I think); call-with-output-string.
   IF there isn't a smooth function to convert a list of string to one
   string. Is there?

`call-with-output-string' or `with-output-to-string' is fine.  you can apply
`append' to a list of strings, but that doesn't handle trees.

thi