Re: [racket] Using get-pure-port

2011-08-18 Thread Shogo Yamazaki
-pipe-chunk ip op) (begin (copy-port ip op) (close-input-port ip) ;### I added this line ### (flush-output op) (close-output-port op)))) Shogo Yamazaki 2011/8/19 Danny Yoo : > On Thu, Aug 18, 2011 at 11:45 AM, Shogo Yamazaki wrote: >> Hi, >>

[racket] Using get-pure-port

2011-08-18 Thread Shogo Yamazaki
after used tens of thousands times it causes crash due to too many open file. I will appreciate any help. Shogo Yamazaki _ For list-related administrative tasks: http://lists.racket-lang.org/listinfo/users

Re: [racket] textarea-input keys

2011-06-27 Thread Shogo Yamazaki
Thanks for your reply, Jay. Also the "initial-value" key is useful for me, but I don't know if it is correct to write so. Shogo Yamazaki moquo2@gmail.com 2011/6/28 Jay McCarthy : > I've just updated the Web server with docs and tests for that new > version. The

[racket] textarea-input keys

2011-06-27 Thread Shogo Yamazaki
has only #:rows and #:cols keys, so I defined my-textarea-input below. I wonder why it doesn't support #:attributes by default. Or is there any other smart way? Thanks. Shogo Yamazaki moquo2@gmail.com (define (my-textarea-input #:rows [rows #f] #:cols [cols #f]