diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2018-12-13 06:24:50 -0800 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2018-12-13 06:24:50 -0800 |
commit | 33259fb8161f4ec8540a4e54830e46850394e38a (patch) | |
tree | 6f52ad8629b589eeb77ec6a136c9407f0ff24fdf | |
parent | 89b15874c3c13cf6725485e88fea4bf1c200fb9d (diff) | |
download | txr-33259fb8161f4ec8540a4e54830e46850394e38a.tar.gz txr-33259fb8161f4ec8540a4e54830e46850394e38a.tar.bz2 txr-33259fb8161f4ec8540a4e54830e46850394e38a.zip |
plusp: wrong name in error message.
* arith.c (plusp): plusp wrongly reports itself as zerop.
-rw-r--r-- | arith.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1559,7 +1559,7 @@ val zerop(val num) val plusp(val num) { - val self = lit("zerop"); + val self = lit("plusp"); switch (type(num)) { case NUM: |