Re: [racket-dev] [plt] Push #28468: master branch updated

2014-04-03 Thread Robby Findler
Is efc46de backwards compatible? (I worry about breaking people's papers, specifically.) Robby On Thu, Apr 3, 2014 at 12:20 AM, wrote: > ntoronto has updated `master' from 87cfce97f9 to efc46ded6d. > http://git.racket-lang.org/plt/87cfce97f9..efc46ded6d > > =[ 2 Commits ]

[racket-dev] Compile cache being incorrect

2014-04-03 Thread Eric Dobson
I have seen multiple times changes in TR not getting properly propogated to TR programs in my debugging, and I finally have found a repeatable example. I am under the impression that if I compile a file and then change a (transitive) dependency of it, then it should have to be recompiled, but I am

Re: [racket-dev] [plt] Push #28468: master branch updated

2014-04-03 Thread Neil Toronto
I did it because I was tired of putting (plot-font-size 15) at the top of every program that produced a plot for a paper. Also, I think it was bad for the "preview" in DrRacket to look different from the PDFs. (Some of my plots in DrRacket had legends that badly overlapped the data in order to

[racket-dev] ffi sizeof bool

2014-04-03 Thread Tobias Hammer
Hi, i guess this shouldn't happen: $ cat s.cc #include int main() { printf("%zu\n", sizeof(bool)); } $ g++ s.cc -o s $ ./s 1 Welcome to Racket v6.0.0.5. -> (require ffi/unsafe) -> (ctype-sizeof _bool) 4 Tested with multiple unix/linux OS, all gcc > 4.3.4 Tobias _