bug-guile
[Top][All Lists]
Advanced

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

Re: Self evaluated `t' in Guile 1.4


From: Mikael Djurfeldt
Subject: Re: Self evaluated `t' in Guile 1.4
Date: 25 Sep 2000 17:23:55 +0200
User-agent: Gnus/5.0807 (Gnus v5.8.7) Emacs/20.7

Ivan Toshkov <address@hidden> writes:

> I'm using Guile 1.4 and 1.4.1 on an i386 RedHat Linux 6.2 and here's
> what happens:
> 
> $ guile
> guile> (version)
> "1.4.1"
> guile> t
> t
> 
> I've tried 1.3, and it's giving me the correct error message.

This is not a bug.  It's part of some experimental language
translation support.

If you want a pure R5RS environment, do:

(define-module (foo)
  :pure
  :use-module (ice-9 r5rs)
  :export (bar))

;;; We're pure R5RS below this point!

Normally, however, the existince of bindings for `t' and `nil' should
not be a problem.

Best regards,
Mikael D.



reply via email to

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