diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2015-08-04 21:19:54 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2015-08-04 21:19:54 -0700 |
commit | 6f9bd3ab61f0e96c70f7a4587cef017fb155bedd (patch) | |
tree | 8d5bd12646c96924b78d9c4d32ef41475474be1c /unwind.c | |
parent | 8a702d43a463472474e9f0adab6858a1637c2a1f (diff) | |
download | txr-6f9bd3ab61f0e96c70f7a4587cef017fb155bedd.tar.gz txr-6f9bd3ab61f0e96c70f7a4587cef017fb155bedd.tar.bz2 txr-6f9bd3ab61f0e96c70f7a4587cef017fb155bedd.zip |
* eval.c (bind_args): Use new ~! for proper indentation
of multi-line context form.
(apply): Use ~! for proper indentation of function code.
* unwind.c (uw_throw): Use ~! for proper indentation of code.
Diffstat (limited to 'unwind.c')
-rw-r--r-- | unwind.c | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -319,17 +319,17 @@ val uw_throw(val sym, val args) prog_string, sym, nao); if (info && sym != eval_error_s) - format(std_error, lit("~a: possibly triggered at ~a by form ~s\n"), + format(std_error, lit("~a: possibly triggered at ~a by form ~!~s\n"), prog_string, info, last_form_evaled, nao); if (ex_info) - format(std_error, lit("~a: during expansion at ~a of form ~s\n"), + format(std_error, lit("~a: during expansion at ~a of form ~!~s\n"), prog_string, ex_info, last_form_expanded, nao); format(std_error, if3(is_msg, - lit("~a: message: ~a\n"), - lit("~a: exception args: ~s\n")), + lit("~a: message: ~!~a\n"), + lit("~a: exception args: ~!~s\n")), prog_string, msg_or_args, nao); } if (uw_exception_subtype_p(sym, query_error_s) || |