Revert "display: <var>"

This reverts commit cb28b55f886dd8ebb50b2336d8dc440a953b2897.
This commit is contained in:
Jan Nieuwenhuizen 2019-11-12 14:02:43 +01:00 committed by Jan (janneke) Nieuwenhuizen
parent 03ef34bfd3
commit 554d9525d0
No known key found for this signature in database
GPG Key ID: F3C1A0D9C1D65273
1 changed files with 1 additions and 3 deletions

View File

@ -139,9 +139,7 @@ display_helper (struct scm *x, int cont, char *sep, int fd, int write_p)
else if (t == TVARIABLE)
{
fdputs ("#<variable ", fd);
/* FIXME: module/var display_helper (x->variable->car, cont, "", fd, 0); */
fdputs ("value: ", fd);
display_helper (x->variable, cont, "", fd, 0);
display_helper (x->variable->car, cont, "", fd, 0);
fdputs (">", fd);
}
else if (t == TNUMBER)