Re: [racket-users] Can't display accented characters at the Windows console

2016-09-02 Thread Cleverson Casarin Uliana
Hi, it seems my system is worse than yours was... :-) From the console output: > (current-output-port (reencode-output-port (current-output-port) "ibm850")) > (display "á") reencode-output-port: error decoding output to stream: # Changing the console encoding doesn't help at all. Thanks

Re: [racket-users] Can't display accented characters at the Windows console

2016-09-02 Thread Pierpaolo Bernardi
Hello, > I'm new to Racket and would like to know what is the trick to make accented > characters display correctly at the Windows command prompt. For example, > when I write at the Racket prompt: >> "número" > then it returns: > "n´┐¢mero" Here you can read an old discussion about this topic:

[racket-users] Can't display accented characters at the Windows console

2016-09-02 Thread Cleverson Casarin Uliana
Hello all, I'm new to Racket and would like to know what is the trick to make accented characters display correctly at the Windows command prompt. For example, when I write at the Racket prompt: > "número" then it returns: "n´┐¢mero" Any accented character I enter, such as á, õ, etc., is

[racket-users] Re: How to adjust an expansion-time parameter in a dynamic-require?

2016-09-02 Thread Dupéron Georges
Le vendredi 2 septembre 2016 12:32:52 UTC+2, Jack Firth a écrit : > However, (parameterize ([param tool-func]) (dynamic-require mod-path)) > doesn't seem to work because the parameter is being set for the runtime phase > rather than the expansion time phase. Here's a solution, which also allows

Re: [racket-users] selective --html-tree in Scribble

2016-09-02 Thread Matthew Flatt
At Fri, 2 Sep 2016 11:57:37 -0700 (PDT), Shriram Krishnamurthi wrote: > On Friday, September 2, 2016 at 2:19:58 PM UTC-4, Matthew Flatt wrote: > > Use the 'toc style property for the "Assignments" section. It's not a > > great name, but 'toc means "render subsections on separate HTML pages". > >

Re: [racket-users] selective --html-tree in Scribble

2016-09-02 Thread Shriram Krishnamurthi
On Friday, September 2, 2016 at 2:19:58 PM UTC-4, Matthew Flatt wrote: > Use the 'toc style property for the "Assignments" section. It's not a > great name, but 'toc means "render subsections on separate HTML pages". This is terrific, thanks. Is there a "callee-determines" equivalent to this

Re: [racket-users] selective --html-tree in Scribble

2016-09-02 Thread Matthew Flatt
Use the 'toc style property for the "Assignments" section. It's not a great name, but 'toc means "render subsections on separate HTML pages". At Fri, 2 Sep 2016 10:42:33 -0700 (PDT), Shriram Krishnamurthi wrote: > I want to unfold an HTML tree selectively. Suppose I have a site.scrbl that >

[racket-users] Re: Whalesong instead of Clojurescript

2016-09-02 Thread Shriram Krishnamurthi
On Thursday, August 25, 2016 at 9:53:40 AM UTC-4, tbrooke wrote: > I briefly looked at Whalesong and I was wondering if anyone is using it and > if it is mature and ready to use. I use Clojurescript and it seems to me that > Whalesong should be equivalent with the advantage of allowing me to

[racket-users] selective --html-tree in Scribble

2016-09-02 Thread Shriram Krishnamurthi
I want to unfold an HTML tree selectively. Suppose I have a site.scrbl that contains a Web site's information. I want all the top-level sections to be split into individual pages (corresponding to --htmls). But in one particular section (call it "Assignments"), I want each sub-section to have

[racket-users] DrRacket on OpenBSD 6.0

2016-09-02 Thread Philippe Meunier
Hello, FYI, W^X is now more strictly enforced on OpenBSD so DrRacket is not going to work anymore be default: https://marc.info/?l=openbsd-misc=147273821220405 "We are pleased to announce the official release of OpenBSD 6.0. [...] - Security improvements: o W^X is now strictly enforced by

[racket-users] How to adjust an expansion-time parameter in a dynamic-require?

2016-09-02 Thread Jack Firth
I have a module that during its expansion calls a function defined by a parameter. I have a command line tool that would like to read a module path and dynamic-require it with that parameter changed to implement tool-specific behavior. However, (parameterize ([param tool-func])