[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Minor implementation changes

This page is part of the web mail archives of SRFI 28 from before July 7th, 2015. The new archives for SRFI 28 contain all messages, not just those from before July 7th, 2015.



Hi all.
The current implementation looks fine.
There are 3 places where one could save some bytes and/or some
milliseconds.

1. (display #\newline buffer)->(newline buffer)

2. (display #\~ buffer)->(write-char #\~ buffer)

3. (display (car format-list) buffer)->(write-char (car format-list) buffer)

Ciao
Sven