summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2018-05-18 20:16:41 -0700
committerKaz Kylheku <kaz@kylheku.com>2018-05-18 20:16:41 -0700
commitaaac04d9e0cdcdd974c065bbff3d212a5eb5cd3a (patch)
tree062c602d79a6d40000795f38875b6af37517c6a8
parent5f7630186f81831d660310ef64984250e6eedc48 (diff)
downloadtxr-aaac04d9e0cdcdd974c065bbff3d212a5eb5cd3a.tar.gz
txr-aaac04d9e0cdcdd974c065bbff3d212a5eb5cd3a.tar.bz2
txr-aaac04d9e0cdcdd974c065bbff3d212a5eb5cd3a.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.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arith.c b/arith.c
index 3f2c5d56..e9f8024c 100644
--- a/arith.c
+++ b/arith.c
@@ -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)