guile-devel
[Top][All Lists]
Advanced

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

Re: doco ports verbiage


From: Marius Vollmer
Subject: Re: doco ports verbiage
Date: 14 Jun 2003 02:32:16 +0200
User-agent: Gnus/5.09 (Gnus v5.9.0) Emacs/21.3

Kevin Ryde <address@hidden> writes:

> Marius Vollmer <address@hidden> writes:
> >
> > What does Guile do when FILENAME already exists?  We should document
> > that.
> 
> I guess on a unix-like system it truncates the file and leaves you
> ready to put new contents.

Yeah, when FILENAME is a regular file.  What about saying that on
POSIX systems, you get the behavior of

    open (FILENAME, O_WRONLY | O_CREAT | O_TRUNC, 0666)

which is what the code eventually does.  Or we could stay in Scheme
and say it is equivalent to

    (open-file FILENAME "w")

and make sure that open-file is documented properly.

-- 
GPG: D5D4E405 - 2F9B BCCC 8527 692A 04E3  331E FAF8 226A D5D4 E405




reply via email to

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