Re: [racket-users] Re: DrRacket Scribbles OK, but can't build docs with raco

2015-08-24 Thread Deren Dohoda
Oh wow I thought I had deleted that long ago. Thank you, that was the problem. On Aug 24, 2015 4:11 PM, "Robby Findler" wrote: > I think you need to remove the local-require in the definition of > to-file in continued-fractions.rkt. This counts as a real require for > dependency purposes; it just

Re: [racket-users] Re: DrRacket Scribbles OK, but can't build docs with raco

2015-08-24 Thread Robby Findler
I think you need to remove the local-require in the definition of to-file in continued-fractions.rkt. This counts as a real require for dependency purposes; it just makes the imports scoped locally. dynamic-require is the way to get a require that happens only at runtime (but in this case, if you d

[racket-users] Re: DrRacket Scribbles OK, but can't build docs with raco

2015-08-24 Thread Deren Dohoda
Actually quoting it was the wrong thing to do, as I found out when I finally looked at the docs. ​The docs are not very complicated, if someone could take a look​ at the cf-manual.scrbl and see if something obvious is going wrong I'd appreciate it. https://github.com/derend/continued-fractions/bl

[racket-users] Re: DrRacket Scribbles OK, but can't build docs with raco

2015-08-24 Thread Deren Dohoda
I have tracked it down finally to a very stupid error. Some uses of @examples or @interaction-eval were not given quoted expressions and this was the problem. It's actually surprising that it works in DrRacket, which was very misleading. Deren On Sun, Aug 23, 2015 at 10:54 PM, Deren Dohoda wrote