summaryrefslogtreecommitdiffstats
path: root/sysif.c
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2019-06-20 20:16:35 -0700
committerKaz Kylheku <kaz@kylheku.com>2019-06-20 20:16:35 -0700
commit20179e0ec729eba70cdf91fafdf21b8412fb45e4 (patch)
treea6145d21209886133fd69415757b60277745254b /sysif.c
parent49198aea9ba609f0eee1801e72edbf2b5eb5d45e (diff)
downloadtxr-20179e0ec729eba70cdf91fafdf21b8412fb45e4.tar.gz
txr-20179e0ec729eba70cdf91fafdf21b8412fb45e4.tar.bz2
txr-20179e0ec729eba70cdf91fafdf21b8412fb45e4.zip
at-exit-do-not-call: wrong return value.
* sysif.c (at_exit_do_not_call): Reverse Boolean polarity of return value to match documentation.
Diffstat (limited to 'sysif.c')
-rw-r--r--sysif.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sysif.c b/sysif.c
index 632805fd..1cce32db 100644
--- a/sysif.c
+++ b/sysif.c
@@ -165,7 +165,7 @@ val at_exit_do_not_call(val func)
{
val old = at_exit_list;
at_exit_list = remq(func, old, nil);
- return tnil(old == at_exit_list);
+ return tnil(old != at_exit_list);
}
static void at_exit_handler(void)