Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | CHICKEN 5.1.0 compatibility patch |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | v1.2.2 | chicken-5 |
Files: | files | file ages | folders |
SHA3-256: |
aecea93a9f1d707ae5de58e1379ec708 |
User & Date: | murphy 2019-06-10 16:58:32.483 |
Context
2019-06-10
| ||
17:01 | Updated release information file check-in: c404816ab7 user: murphy tags: chicken-5 | |
16:58 | CHICKEN 5.1.0 compatibility patch check-in: aecea93a9f user: murphy tags: chicken-5, v1.2.2 | |
2019-05-05
| ||
11:26 | Updated release information file check-in: d7c35dde69 user: murphy tags: chicken-5 | |
Changes
Changes to generic.scm.
︙ | ︙ | |||
104 105 106 107 108 109 110 | (write-sized write-real real port)) (unless (zero? imag) (write-tag/type 2 'sized port) (write-sized write-real imag port)))) (define (write-keyword v port) (write-tag/type 1 'sized port) | | | 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 | (write-sized write-real real port)) (unless (zero? imag) (write-tag/type 2 'sized port) (write-sized write-real imag port)))) (define (write-keyword v port) (write-tag/type 1 'sized port) (write-sized-string (keyword->string v) port) (write-tag/type 2 'int* port) (write-int* 3 port)) (define (write-symbol v port) (write-tag/type 1 'sized port) (write-sized-string (symbol->string v) port) (write-tag/type 2 'int* port) |
︙ | ︙ |
Changes to protobuf.egg.
1 2 3 4 | ((category data io) (synopsis "Protocol buffer serialization") (author "Thomas Chust") (license "BSD") | | | 1 2 3 4 5 6 7 8 9 10 11 12 | ((category data io) (synopsis "Protocol buffer serialization") (author "Thomas Chust") (license "BSD") (version "1.2.2") (dependencies srfi-13 srfi-18 srfi-42 srfi-69 srfi-99) (test-dependencies |
︙ | ︙ |