ruricolist / serapeum

Utilities beyond Alexandria
MIT License
420 stars 41 forks source link

Hash-table pretty-printing is not readable because of missing package #92

Closed Ambrevar closed 3 years ago

Ambrevar commented 3 years ago

In pretty-print-hash-table, we can see that (princ "(dict " stream) is hard-coded. This make the pretty-printing un-cl:read-able when dict is not in the current package.

Instead, something like the following could be used:

(write 'serapeum:dict stream)