diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2017-06-17 09:01:24 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2017-06-17 09:01:24 -0700 |
commit | e640d29522bd832f88874a6c955e14031481e380 (patch) | |
tree | 5f38d5984b32ade57e942ec8dcd4e48c4f514c03 /arith.c | |
parent | 7947bf8dcdde549456493295f12ab03b5ec852b2 (diff) | |
download | txr-e640d29522bd832f88874a6c955e14031481e380.tar.gz txr-e640d29522bd832f88874a6c955e14031481e380.tar.bz2 txr-e640d29522bd832f88874a6c955e14031481e380.zip |
ash: fix wrong function name in diagnostics.
* arith.c (ash): Refer to ash in error messages rather than
ashift.
Diffstat (limited to 'arith.c')
-rw-r--r-- | arith.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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) |