diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2016-05-26 22:12:55 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2016-05-26 22:12:55 -0700 |
commit | 6c21d7a8c99a0917818e96f50b71ecaba0a26e0c (patch) | |
tree | 836056597afd59cf395640ebdc2ac7f18224167b | |
parent | 3fa6e2f0428485e4be7ccaea5d57d2f0eb2bd9fe (diff) | |
download | txr-6c21d7a8c99a0917818e96f50b71ecaba0a26e0c.tar.gz txr-6c21d7a8c99a0917818e96f50b71ecaba0a26e0c.tar.bz2 txr-6c21d7a8c99a0917818e96f50b71ecaba0a26e0c.zip |
Remove superfluous arg defaulting in drop functions.
* lib.c (drop_while, drop_until): No need to
do default_arg on keyfun, since it is just passed
to pos_if, which takes care of it.
-rw-r--r-- | lib.c | 6 |
1 files changed, 2 insertions, 4 deletions
@@ -7829,8 +7829,7 @@ val drop_while(val pred, val seq, val keyfun) case STR: case VEC: { - val key = default_arg(keyfun, identity_f); - val pos = pos_if(notf(pred), seq, key); + val pos = pos_if(notf(pred), seq, keyfun); if (!pos) return make_like(nil, seq); return sub(seq, pos, t); @@ -7862,8 +7861,7 @@ val drop_until(val pred, val seq, val keyfun) case STR: case VEC: { - val key = default_arg(keyfun, identity_f); - val pos = pos_if(pred, seq, key); + val pos = pos_if(pred, seq, keyfun); if (!pos) return seq; return sub(seq, succ(pos), t); |