GNU bug report logs - #10491
unread-char and eof

Previous Next

Package: guile;

Reported by: Aleix Conchillo Flaqué <aconchillo <at> gmail.com>

Date: Thu, 12 Jan 2012 20:31:02 UTC

Severity: normal

Done: Daniel Hartwig <mandyke <at> gmail.com>

Bug is archived. No further changes may be made.

To add a comment to this bug, you must first unarchive it, by sending
a message to control AT debbugs.gnu.org, with unarchive 10491 in the body.
You can then email your comments to 10491 AT debbugs.gnu.org in the normal way.

Toggle the display of automated, internal messages from the tracker.

View this report as an mbox folder, status mbox, maintainer mbox


Report forwarded to bug-guile <at> gnu.org:
bug#10491; Package guile. (Thu, 12 Jan 2012 20:31:03 GMT) Full text and rfc822 format available.

Acknowledgement sent to Aleix Conchillo Flaqué <aconchillo <at> gmail.com>:
New bug report received and forwarded. Copy sent to bug-guile <at> gnu.org. (Thu, 12 Jan 2012 20:31:03 GMT) Full text and rfc822 format available.

Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):

From: Aleix Conchillo Flaqué <aconchillo <at> gmail.com>
To: bug-guile <at> gnu.org
Subject: unread-char and eof
Date: Thu, 12 Jan 2012 12:14:04 -0800
Whenever eof is reach in a port, a call to unread-char passing eof
triggers an error. I'm not sure what's the right behavior for this,
but I guess the way it is now is just as the user should be
responsible to check eof.

A note in the documentation would help in any case.




Information forwarded to bug-guile <at> gnu.org:
bug#10491; Package guile. (Fri, 13 Jan 2012 10:36:01 GMT) Full text and rfc822 format available.

Message #8 received at 10491 <at> debbugs.gnu.org (full text, mbox):

From: Daniel Hartwig <mandyke <at> gmail.com>
To: Aleix Conchillo Flaqué <aconchillo <at> gmail.com>
Cc: 10491 <at> debbugs.gnu.org
Subject: Re: bug#10491: unread-char and eof
Date: Fri, 13 Jan 2012 18:34:39 +0800
On 13 January 2012 04:14, Aleix Conchillo Flaqué <aconchillo <at> gmail.com> wrote:
> Whenever eof is reach in a port, a call to unread-char passing eof
> triggers an error. I'm not sure what's the right behavior for this,
> but I guess the way it is now is just as the user should be
> responsible to check eof.

The user should indeed be checking for this because eof is not a
character, rather, a special value used to indicate that no more data
is available on the port.  This value is not read from the port, it
does not make sense to unread it.

>
> A note in the documentation would help in any case.

Suggestions welcome.  Personally I find the documentation sufficiently
clear on the usage of unread-char only accepting a character value and
equally clear that an eof value is not a character.




Information forwarded to bug-guile <at> gnu.org:
bug#10491; Package guile. (Mon, 16 Jan 2012 18:59:01 GMT) Full text and rfc822 format available.

Message #11 received at 10491 <at> debbugs.gnu.org (full text, mbox):

From: Aleix Conchillo Flaqué <aconchillo <at> gmail.com>
To: Daniel Hartwig <mandyke <at> gmail.com>
Cc: 10491 <at> debbugs.gnu.org
Subject: Re: bug#10491: unread-char and eof
Date: Mon, 16 Jan 2012 10:57:44 -0800
On Fri, Jan 13, 2012 at 2:34 AM, Daniel Hartwig <mandyke <at> gmail.com> wrote:
>
> Suggestions welcome.  Personally I find the documentation sufficiently
> clear on the usage of unread-char only accepting a character value and
> equally clear that an eof value is not a character.

I totally agree. However, I think the documentation should help any
kind of user level. The documentation also does not say of any kind of
error reported by the function.

So, something like this, I think would help:

"Procedure will report an error if a non-character object (e.g.
end-of-file object) is given to it.".

Or something similar.

I don't have a strong opinion on this, so you can certainly mark the
bug as won't do. But I think it would help.

Best,

Aleix




Information forwarded to bug-guile <at> gnu.org:
bug#10491; Package guile. (Tue, 17 Jan 2012 03:33:02 GMT) Full text and rfc822 format available.

Message #14 received at 10491 <at> debbugs.gnu.org (full text, mbox):

From: Daniel Hartwig <mandyke <at> gmail.com>
To: Aleix Conchillo Flaqué <aconchillo <at> gmail.com>
Cc: 10491 <at> debbugs.gnu.org
Subject: Re: bug#10491: unread-char and eof
Date: Tue, 17 Jan 2012 11:31:12 +0800
On 17 January 2012 02:57, Aleix Conchillo Flaqué <aconchillo <at> gmail.com> wrote:
>
> I totally agree. However, I think the documentation should help any
> kind of user level. The documentation also does not say of any kind of
> error reported by the function.

Nor are type errors mentioned by most other functions, they are simply
implied.  This convention is mentioned in the revised report [1]:

 It is an error for an operation to be presented with an argument that it
 is not specified to handle.  For succinctness, we follow the convention
 that if an argument name is also the name of a type listed in section
 *note Disjointness of types::, then that argument must be of the named
 type.  For example, ...

[1] http://people.csail.mit.edu/jaffer/r5rs_3.html#SEC11




Information forwarded to bug-guile <at> gnu.org:
bug#10491; Package guile. (Wed, 18 Jan 2012 00:59:01 GMT) Full text and rfc822 format available.

Message #17 received at 10491 <at> debbugs.gnu.org (full text, mbox):

From: Aleix Conchillo Flaqué <aconchillo <at> gmail.com>
To: Daniel Hartwig <mandyke <at> gmail.com>
Cc: 10491 <at> debbugs.gnu.org
Subject: Re: bug#10491: unread-char and eof
Date: Tue, 17 Jan 2012 16:57:37 -0800
On Mon, Jan 16, 2012 at 7:31 PM, Daniel Hartwig <mandyke <at> gmail.com> wrote:
>
> Nor are type errors mentioned by most other functions, they are simply
> implied.  This convention is mentioned in the revised report [1]:
>
>  It is an error for an operation to be presented with an argument that it
>  is not specified to handle.  For succinctness, we follow the convention
>  that if an argument name is also the name of a type listed in section
>  *note Disjointness of types::, then that argument must be of the named
>  type.  For example, ...
>
> [1] http://people.csail.mit.edu/jaffer/r5rs_3.html#SEC11


I see, convinced. Thanks for the feedback.

You can mark it as invalid and close it.




Reply sent to Daniel Hartwig <mandyke <at> gmail.com>:
You have taken responsibility. (Wed, 18 Jan 2012 01:09:02 GMT) Full text and rfc822 format available.

Notification sent to Aleix Conchillo Flaqué <aconchillo <at> gmail.com>:
bug acknowledged by developer. (Wed, 18 Jan 2012 01:09:02 GMT) Full text and rfc822 format available.

Message #22 received at 10491-done <at> debbugs.gnu.org (full text, mbox):

From: Daniel Hartwig <mandyke <at> gmail.com>
To: 10491-done <at> debbugs.gnu.org
Subject: Re: bug#10491: unread-char and eof
Date: Wed, 18 Jan 2012 09:07:31 +0800
On 18 January 2012 08:57, Aleix Conchillo Flaqué <aconchillo <at> gmail.com> wrote:
> On Mon, Jan 16, 2012 at 7:31 PM, Daniel Hartwig <mandyke <at> gmail.com> wrote:
>>
>> Nor are type errors mentioned by most other functions, they are simply
>> implied.  This convention is mentioned in the revised report [1]:
>>
>>  It is an error for an operation to be presented with an argument that it
>>  is not specified to handle.  For succinctness, we follow the convention
>>  that if an argument name is also the name of a type listed in section
>>  *note Disjointness of types::, then that argument must be of the named
>>  type.  For example, ...
>>
>> [1] http://people.csail.mit.edu/jaffer/r5rs_3.html#SEC11
>
>
> I see, convinced. Thanks for the feedback.
>
> You can mark it as invalid and close it.




bug archived. Request was from Debbugs Internal Request <help-debbugs <at> gnu.org> to internal_control <at> debbugs.gnu.org. (Wed, 15 Feb 2012 12:24:05 GMT) Full text and rfc822 format available.

This bug report was last modified 13 years and 178 days ago.

Previous Next


GNU bug tracking system
Copyright (C) 1999 Darren O. Benham, 1997,2003 nCipher Corporation Ltd, 1994-97 Ian Jackson.