diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2015-09-07 14:39:45 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2015-09-07 14:39:45 -0700 |
commit | febb7b777096ff9ea7106e1802ffabdd9449b727 (patch) | |
tree | 34218e1920c098457fc069f06982fb3b89604f08 /lib.c | |
parent | 73584c632d9a61c679cea57ba09f5d1843bf1435 (diff) | |
download | txr-febb7b777096ff9ea7106e1802ffabdd9449b727.tar.gz txr-febb7b777096ff9ea7106e1802ffabdd9449b727.tar.bz2 txr-febb7b777096ff9ea7106e1802ffabdd9449b727.zip |
Remove stray debug print (TXR 113).
* lib.c (callerror): Remove accidentally committed debug
print, present from the time the function was introduced.
Diffstat (limited to 'lib.c')
-rw-r--r-- | lib.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -4330,7 +4330,7 @@ val interp_fun_p(val obj) static noreturn void callerror(val fun, val msg) { uses_or2; - prinl(last_form_evaled, nil); + if (functionp(fun)) fun = format(nil, lit("~s"), or2(func_get_name(fun, nil), fun), nao); else |