diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2018-05-18 20:16:41 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2018-05-18 20:16:41 -0700 |
commit | 088ef932952b7568251e709b393e93009a6621c3 (patch) | |
tree | 062c602d79a6d40000795f38875b6af37517c6a8 | |
parent | 43804ee7a704e6a7e3eecc1a7d5e592d2e2763a7 (diff) | |
download | txr-088ef932952b7568251e709b393e93009a6621c3.tar.gz txr-088ef932952b7568251e709b393e93009a6621c3.tar.bz2 txr-088ef932952b7568251e709b393e93009a6621c3.zip |
width: misleading error message.
* arith.c (width): Fix incorrect name in type error
diagnostic. There is no such function as integer-length.
-rw-r--r-- | arith.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -2940,7 +2940,7 @@ val width(val obj) default: break; } - uw_throwf(error_s, lit("integer-length: ~s isn't an integer"), obj, nao); + uw_throwf(error_s, lit("width: ~s isn't an integer"), obj, nao); } val bits(val obj) |