mirror of
https://gitlab.com/embeddable-common-lisp/ecl.git
synced 2026-01-24 05:21:20 -08:00
Printer addresses
This commit is contained in:
parent
07391b9ced
commit
ca0962cdb3
5 changed files with 40 additions and 21 deletions
|
|
@ -39,7 +39,7 @@ write_array_inner(bool vector, cl_object x, cl_object stream)
|
|||
} else {
|
||||
if (!ecl_print_array()) {
|
||||
writestr_stream(vector? "#<vector " : "#<array ", stream);
|
||||
_ecl_write_addr(x, stream);
|
||||
_ecl_write_addr((void *)x, stream);
|
||||
ecl_write_char('>', stream);
|
||||
return;
|
||||
}
|
||||
|
|
@ -189,7 +189,7 @@ _ecl_write_bitvector(cl_object x, cl_object stream)
|
|||
{
|
||||
if (!ecl_print_array() && !ecl_print_readably()) {
|
||||
writestr_stream("#<bit-vector ", stream);
|
||||
_ecl_write_addr(x, stream);
|
||||
_ecl_write_addr((void *)x, stream);
|
||||
ecl_write_char('>', stream);
|
||||
} else {
|
||||
cl_index ndx;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue