On Sat 18 Apr 2009 17:04, Mike Gran writes:
> Andy et al.
>
> What happens to the VM if characters become UCS-4 that ranges from 0 to
> 10?
>
> For example, in compile-bytecode.scm,
>
> (define (write-bytecode asm write-byte get-addr labels)
> (define (write-char c)
> (write-byte (char
Andy et al.
What happens to the VM if characters become UCS-4 that ranges from 0 to
10?
For example, in compile-bytecode.scm,
(define (write-bytecode asm write-byte get-addr labels)
(define (write-char c)
(write-byte (char->integer c)))
...