gcl-devel
[Top][All Lists]
Advanced

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

[Gcl-devel] ANSI compliance bug (high priority): NTH-VALUE is not defin


From: Paul F. Dietz
Subject: [Gcl-devel] ANSI compliance bug (high priority): NTH-VALUE is not defined
Date: Wed, 18 Sep 2002 06:29:46 -0500

Compiled with --enable-ansi, the macro NTH-VALUE is not defined
in gcl:

>(nth-value 1 (values 1 2 3))
 
Error in EVAL [or a callee]: The function NTH-VALUE is undefined.
 

This should be easy to add:

(defmacro nth-value (n expr)
  `(nth ,n (multiple-value-list ,expr)))


        Paul Dietz
        address@hidden




reply via email to

[Prev in Thread] Current Thread [Next in Thread]