summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--arith.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/arith.c b/arith.c
index 537c1a0d..93341d3c 100644
--- a/arith.c
+++ b/arith.c
@@ -2473,13 +2473,13 @@ val ash(val a, val bits)
}
bad:
- uw_throwf(error_s, lit("ashift: operation failed on ~s"), a, nao);
+ uw_throwf(error_s, lit("ash: operation failed on ~s"), a, nao);
bad2:
- uw_throwf(error_s, lit("ashift: bits value ~s is not a fixnum"), bits, nao);
+ uw_throwf(error_s, lit("ash: bits value ~s is not a fixnum"), bits, nao);
bad3:
- uw_throwf(error_s, lit("ashift: non-integral operand ~s"), a, nao);
+ uw_throwf(error_s, lit("ash: non-integral operand ~s"), a, nao);
}
val bit(val a, val bit)