From f3a0b4ddc516de5524862b51af548e277a43a28a Mon Sep 17 00:00:00 2001 From: Kaz Kylheku Date: Mon, 13 Mar 2017 07:19:40 -0700 Subject: Fix missing nao terminator in formatted printing. * arith.c (trunc1, trunc, floorf, ceili): Add missing nao terminator to uw_throwf calls. * debug.c (debug): Missing nao terminator in format call. * eval.c (expand_opt_params_rec, me_equot): Missing nao terminator in eval_error call. * lib.c (use_sym): Missing nao in uw_throw call. * regex.c (reg_derivative): Missing nao in uw_throwf. --- debug.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'debug.c') diff --git a/debug.c b/debug.c index d207034b..fdf21423 100644 --- a/debug.c +++ b/debug.c @@ -209,7 +209,7 @@ val debug(val ctx, val bindings, val data, val line, val pos, val base) val breakpoints_old = breakpoints; breakpoints = remqual(l, breakpoints, nil); if (breakpoints == breakpoints_old) - format(std_debug, lit("no such breakpoint\n")); + format(std_debug, lit("no such breakpoint\n"), nao); } else { opt_loglevel = c_num(n); } -- cgit v1.2.3