[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: pretty-print for 1+
From: |
Ludovic Courtès |
Subject: |
Re: pretty-print for 1+ |
Date: |
Fri, 13 Sep 2013 00:04:32 +0200 |
User-agent: |
Gnus/5.130007 (Ma Gnus v0.7) Emacs/24.3 (gnu/linux) |
Brian Killian <address@hidden> skribis:
> Using guile 2.0.9 and the ice-9 pretty-print module, when I apply:
>
> (pretty-print '(1+ 1))
>
> I get:
>
> (#{1+}# 1)
>
> I was expecting:
>
> (1+ 1)
>
> Is this an issue with pretty-print or should I adjust my expectation?
I think it’s an issue with ‘write’. Specifically,
‘INITIAL_IDENTIFIER_MASK’ in print.c doesn’t quite match the syntax
recognized by ‘read’.
Ludo’.