bug#39509: guile-3.0.0: Error while printing exception

2020-03-06 Thread Ludovic Courtès
Hi Klaus, Klaus Stehle skribis: > ;; The compiled program II says: "Error while printing exception". > ;; It doesn't matter which function produces the string for the error message. > ;; The compiled version does not work, if the message string is the returned > ;; value of a function. The pure

bug#39509: guile-3.0.0: Error while printing exception

2020-02-08 Thread Klaus Stehle
Hi, a strange problem with guile-3.0.0 ... ;; (I) This one-line program shows an error message, no problem: (error "We want to see this error message!") ;; (II) A similar program doesn't show the message, if it has been compiled: (error (format #f "We want to see this error message!"))