summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2019-03-03 09:37:35 -0800
committerKaz Kylheku <kaz@kylheku.com>2019-03-03 09:37:35 -0800
commit4afb293ed575ba2a24d5220c0b4cdc4df00c88a7 (patch)
tree47f76595ce2a6a6606b598a1cce630035580ad05
parent951bb6643f99cd7f9b5601fa0273171d877ec705 (diff)
downloadtxr-4afb293ed575ba2a24d5220c0b4cdc4df00c88a7.tar.gz
txr-4afb293ed575ba2a24d5220c0b4cdc4df00c88a7.tar.bz2
txr-4afb293ed575ba2a24d5220c0b4cdc4df00c88a7.zip
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.
-rw-r--r--eval.c4
1 files changed, 2 insertions, 2 deletions
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;
}