diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2015-09-07 20:23:56 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2015-09-07 20:23:56 -0700 |
commit | 925deb5f0ec8d201f701493d3e571ba46b169a15 (patch) | |
tree | 845e9b2caa111464b49334bdcaf3a126d5150c11 /parser.c | |
parent | 08caf201b16922a6863009df91afdb92662da80e (diff) | |
download | txr-925deb5f0ec8d201f701493d3e571ba46b169a15.tar.gz txr-925deb5f0ec8d201f701493d3e571ba46b169a15.tar.bz2 txr-925deb5f0ec8d201f701493d3e571ba46b169a15.zip |
Print exceptions with proper indenting.
* parser.c (repl): Use format to print exception, and use ~!
to ensure indentation.
Diffstat (limited to 'parser.c')
-rw-r--r-- | parser.c | 16 |
1 files changed, 7 insertions, 9 deletions
@@ -574,16 +574,14 @@ val repl(val bindings, val in_stream, val out_stream) if (uw_exception_subtype_p(exsym, syntax_error_s)) { put_line(lit("** syntax error"), out_stream); } else if (uw_exception_subtype_p(exsym, error_s)) { - put_string(lit("** "), out_stream); - obj_pprint(car(exvals), out_stream); - if (cdr(exvals)) { - put_string(lit(" "), out_stream); - pprinl(cdr(exvals), out_stream); - } else { - put_line(nil, nil); - } + if (cdr(exvals)) + format(out_stream, lit("** ~!~a ~!~s\n"), + car(exvals), cdr(exvals), nao); + else + format(out_stream, lit("** ~!~a\n"), car(exvals), nao); + } else { - format(out_stream, lit("** ~s exception, args: ~s\n"), + format(out_stream, lit("** ~!~s exception, args: ~!~s\n"), exsym, exvals, nao); } } |