diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2016-10-03 07:15:08 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2016-10-03 07:15:08 -0700 |
commit | 325d7229d0c31e548da04d1d2ff791fd3f52c617 (patch) | |
tree | 443b83ca57eaaecf20eb1cd3e7a84acdc7d02e13 | |
parent | 52f1a038d1a3c30631dcf2f44f3fadbf0a4c823b (diff) | |
download | txr-325d7229d0c31e548da04d1d2ff791fd3f52c617.tar.gz txr-325d7229d0c31e548da04d1d2ff791fd3f52c617.tar.bz2 txr-325d7229d0c31e548da04d1d2ff791fd3f52c617.zip |
Coding convention fix in plus function.
* arith.c (plus): Eliminate compound statement braces
around case that consists of one return statement.
-rw-r--r-- | arith.c | 4 |
1 files changed, 1 insertions, 3 deletions
@@ -447,9 +447,7 @@ tail: return normalize(n); } case TYPE_PAIR(FLNUM, FLNUM): - { - return flo(c_flo(anum) + c_flo(bnum)); - } + return flo(c_flo(anum) + c_flo(bnum)); case TYPE_PAIR(BGNUM, FLNUM): anum = flo_int(anum); goto tail; |