All tests still pass and a lot of debugging junk is gone

This commit is contained in:
Simon Brooke 2017-09-13 00:25:11 +01:00
parent 306f520082
commit 5dee093e65
6 changed files with 13 additions and 24 deletions

View file

@ -34,6 +34,12 @@ repl( FILE * in_stream, FILE * out_stream, FILE * error_stream,
if ( show_prompt ) {
fwprintf( out_stream, L"\n-> " );
}
/* OK, I think what's going wrong here is we're passing by
* value and I think we should be passing by reference.
* I'm not certain about that, and as it will be a really
* major change I'm going to think some more before making
* in */
// print( out_stream, lisp_eval(input, oblist, NULL));
print( out_stream, input );
fwprintf( out_stream, L"\n" );