bug#39509: guile-3.0.0: Error while printing exception
Klaus Stehle <[email protected]>
| Newsgroups | gmane.lisp.guile.bugs |
|---|---|
| Message-ID | <20200208094103.Horde.krHZmxII44Qu3ouivhN9Scu@webmail.uni-tuebingen.de> |
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!")) ;; 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 example: (error ((lambda () "If compiled we won't see this error message!"))) Best regards, Klaus