[racket-dev] problems with eps file generation in Windows?

From: Robby Findler (robby at eecs.northwestern.edu)
Date: Tue Jan 11 13:40:17 EST 2011

There have been a lot of changes to the gui systems since then. I
recommend you either use a released version or track the git head more
closely. In the version I have, under windows, the program below seems
to produce the right output:

#lang racket
(require redex)
(define-language lc
  (e (e e)
     (λ (x) e)
     x)
  (x variable-not-otherwise-mentioned))
(render-language lc "lc.eps")

Robby

On Tue, Jan 11, 2011 at 12:21 PM, Stephen Chang <stchang at ccs.neu.edu> wrote:
> Oops, sorry, it's 5.0.1.7.
>
>
>
>
> On Tue, Jan 11, 2011 at 1:18 PM, Robby Findler
> <robby at eecs.northwestern.edu> wrote:
>> Which version of Racket are you using?
>>
>> Robby
>>
>> On Tue, Jan 11, 2011 at 12:12 PM, Stephen Chang <stchang at ccs.neu.edu> wrote:
>>> Has anyone ever had issues with generating .eps files with
>>> render-language in Windows? Is there something I need to install to
>>> make it work? When I run render-language, it seems to be generating
>>> some file content, but when I view it, it's blank.
>>>
>>> For comparison, I generated the same thing on a linux machine and it
>>> works. I've attached the two files for comparison if anyone wants to
>>> take a look. When I diff the two files, it seems that where stuff is
>>> supposed to show up, in the linux file, there's a "show" with the
>>> appropriate content, but in the windows file, there is not.
>>>
>>> _________________________________________________
>>>  For list-related administrative tasks:
>>>  http://lists.racket-lang.org/listinfo/dev
>>>
>>
>


Posted on the dev mailing list.