From 94b999ab6e5ec11ed9b06a7c50f45cead6ded9fc Mon Sep 17 00:00:00 2001 From: Kaz Kylheku Date: Sun, 3 Mar 2019 09:37:35 -0800 Subject: Fix use of comma operator as statement terminator. * eval.c (fmakunbound, mmakunbound): Replace comma operator with statement terminator, an unintentional stylistic oddness. No behavior change. --- eval.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'eval.c') diff --git a/eval.c b/eval.c index 1ba84688..557bf1f7 100644 --- a/eval.c +++ b/eval.c @@ -5436,7 +5436,7 @@ static val makunbound(val sym) static val fmakunbound(val sym) { - lisplib_try_load(sym), + lisplib_try_load(sym); remhash(top_fb, sym); if (opt_compat && opt_compat <= 127) remhash(top_mb, sym); @@ -5446,7 +5446,7 @@ static val fmakunbound(val sym) static val mmakunbound(val sym) { - lisplib_try_load(sym), + lisplib_try_load(sym); remhash(top_mb, sym); return sym; } -- cgit v1.2.3