diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2019-03-03 09:37:35 -0800 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2019-03-03 09:37:35 -0800 |
commit | 94b999ab6e5ec11ed9b06a7c50f45cead6ded9fc (patch) | |
tree | 47f76595ce2a6a6606b598a1cce630035580ad05 | |
parent | 5fab9b29d0cc5cadb5a3783534cfdb270b48a7b5 (diff) | |
download | txr-94b999ab6e5ec11ed9b06a7c50f45cead6ded9fc.tar.gz txr-94b999ab6e5ec11ed9b06a7c50f45cead6ded9fc.tar.bz2 txr-94b999ab6e5ec11ed9b06a7c50f45cead6ded9fc.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.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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; } |