display: <var>

This commit is contained in:
Jan Nieuwenhuizen 2019-11-11 00:12:55 +01:00 committed by Jan (janneke) Nieuwenhuizen
parent 70010bfa4d
commit 03ef34bfd3
No known key found for this signature in database
GPG Key ID: F3C1A0D9C1D65273
1 changed files with 3 additions and 1 deletions

View File

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