let-values* is mentioned in the documentation for SRFI-11, but
guile> (version) "1.8.5" guile> (use-modules (srfi srfi-11)) guile> (let-values* (((x y) (values 1 2))) (list x y)) Backtrace: In standard input: 3: 0* (let-values* (((x y) (values 1 2))) (list x y)) standard input:3:1: In expression (let-values* (#) (list x y)): standard input:3:1: Unbound variable: let-values* ABORT: (unbound-variable) so I don't know if this is a documentation bug or a code bug, but I sure would find let-values* a handy thing. Judy Hawkins