Masanori Ogino

Results 82 comments of Masanori Ogino

[UAX #31: Unicode Identifier and Pattern Syntax](https://unicode.org/reports/tr31/ "UAX #31: Unicode Identifier and Pattern Syntax") might be informative, as the current rule seems like identifiers in a programming language's syntax definition.

Yes, just adding `- CFLAGS="-mx32"` to `env` in `.travis.yml`. `gcc-multilib` has dependencies on `libgcc` and `libc` for x32 if supported, so no other changes will be required.

@KeenS I'm on your side. Kitchen-sink approaches should be avoided, IMHO, especially on security. Also, I think general cryptography-related things should be provided by, say `(picrin crypto)`, `(picrin rsa)` or...

I'd love to work on this unless anyone has started to do yet. My current design based on the comment of @wasabiz: 1. `char.c` handles ASCII only, so `(picrin base)`...

Of course. I'm glad to become a collaborator. BTW, when my modification is related both benz and picrin, what should I do? Sending a PR to benz and another to...

@wasabiz Confirmed. Thanks!

Thank you for reporting, @dcurrie! I also found the build issues some day and your pic_raise fix looks good to me. However, I am unsure whether the pic_fmemopen fix is...

``` scheme (let* ((a "car") (b (string->transient a))) (transient-string-set! b 1 #\d) (list a (transient->string b))) ``` What about this? Clojure's transients will show ``` scheme ("car" "cdr") ``` Clojure...