summaryrefslogtreecommitdiffstats
path: root/arith.c
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2014-10-24 08:41:09 -0700
committerKaz Kylheku <kaz@kylheku.com>2014-10-24 08:41:09 -0700
commit57276037c1357e54730a94fb1191362d4f694252 (patch)
treef933609cb8870c42478a71a2c3f3b416c93d57aa /arith.c
parent43418aad5d8214c1b60b080dff2c36a2caf27391 (diff)
downloadtxr-57276037c1357e54730a94fb1191362d4f694252.tar.gz
txr-57276037c1357e54730a94fb1191362d4f694252.tar.bz2
txr-57276037c1357e54730a94fb1191362d4f694252.zip
* Makefile: Removing trailing spaces.
(GREP_CHECK): New macro. (enforce): Rewritten using GREP_CHECK, with new checks. * arith.c, combi.c, debug.c, eval.c, filter.c, gc.c, hash.c, lib.c, * lib.h, match.c, parser.l, parser.y, rand.c, regex.c, signal.c, * signal.h, stream.c, syslog.c, txr.c, unwind.c, utf8.c: Remove trailing spaces.
Diffstat (limited to 'arith.c')
-rw-r--r--arith.c22
1 files changed, 11 insertions, 11 deletions
diff --git a/arith.c b/arith.c
index 79f0d224..5d4cdada 100644
--- a/arith.c
+++ b/arith.c
@@ -287,7 +287,7 @@ val plus(val anum, val bnum)
{
tail:
switch (TAG_PAIR(tag(anum), tag(bnum))) {
- case TAG_PAIR(TAG_NUM, TAG_NUM):
+ case TAG_PAIR(TAG_NUM, TAG_NUM):
{
cnum a = c_num(anum);
cnum b = c_num(bnum);
@@ -296,7 +296,7 @@ tail:
if (sum < NUM_MIN || sum > NUM_MAX)
return bignum(sum);
return num_fast(sum);
- }
+ }
case TAG_PAIR(TAG_NUM, TAG_PTR):
switch (type(bnum)) {
case BGNUM:
@@ -403,7 +403,7 @@ tail:
}
uw_throwf(error_s, lit("+: invalid operands ~s ~s"), anum, bnum, nao);
char_range:
- uw_throwf(numeric_error_s,
+ uw_throwf(numeric_error_s,
lit("+: sum of ~s and ~s is out of character range"),
anum, bnum, nao);
}
@@ -412,8 +412,8 @@ val minus(val anum, val bnum)
{
tail:
switch (TAG_PAIR(tag(anum), tag(bnum))) {
- case TAG_PAIR(TAG_NUM, TAG_NUM):
- case TAG_PAIR(TAG_CHR, TAG_CHR):
+ case TAG_PAIR(TAG_NUM, TAG_NUM):
+ case TAG_PAIR(TAG_CHR, TAG_CHR):
{
cnum a = c_num(anum);
cnum b = c_num(bnum);
@@ -422,7 +422,7 @@ tail:
if (sum < NUM_MIN || sum > NUM_MAX)
return bignum(sum);
return num_fast(sum);
- }
+ }
case TAG_PAIR(TAG_NUM, TAG_PTR):
switch (type(bnum)) {
case BGNUM:
@@ -514,7 +514,7 @@ tail:
cnum sum = a - b;
if (sum < 0 || sum > 0x10FFFF)
- uw_throwf(numeric_error_s,
+ uw_throwf(numeric_error_s,
lit("-: difference of ~s and ~s is out of character range"),
anum, bnum, nao);
return chr(sum);
@@ -566,7 +566,7 @@ val mul(val anum, val bnum)
{
tail:
switch (TAG_PAIR(tag(anum), tag(bnum))) {
- case TAG_PAIR(TAG_NUM, TAG_NUM):
+ case TAG_PAIR(TAG_NUM, TAG_NUM):
{
cnum a = c_num(anum);
cnum b = c_num(bnum);
@@ -706,7 +706,7 @@ tail:
double x = c_num(anum), y = c_flo(bnum);
if (y == 0.0)
goto divzero;
- else
+ else
return flo((x - fmod(x, y))/y);
}
default:
@@ -745,7 +745,7 @@ tail:
double x = c_flo(anum), y = c_num(bnum);
if (y == 0.0)
goto divzero;
- else
+ else
return flo((x - fmod(x, y))/y);
}
default:
@@ -767,7 +767,7 @@ tail:
double x = c_flo(anum), y = c_flo(bnum);
if (y == 0.0)
goto divzero;
- else
+ else
return flo((x - fmod(x, y))/y);
}
case TYPE_PAIR(BGNUM, FLNUM):