summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2018-01-02 03:02:06 -0800
committerKaz Kylheku <kaz@kylheku.com>2018-01-02 03:02:06 -0800
commitc1f589db75f669bcd6c4bb0671fb1d71eb0d5e5a (patch)
tree4488c522f3000c318bea0e78f7c6e44280e18396
parent94f730114aeb371a65f5d43650bf1d0045bff9e2 (diff)
downloadtxr-c1f589db75f669bcd6c4bb0671fb1d71eb0d5e5a.tar.gz
txr-c1f589db75f669bcd6c4bb0671fb1d71eb0d5e5a.tar.bz2
txr-c1f589db75f669bcd6c4bb0671fb1d71eb0d5e5a.zip
seq_info: whitespace.
* lib.c (seq_info): Incorrect indentation of else statement fixed.
-rw-r--r--lib.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib.c b/lib.c
index 6ca611b9..592e95e3 100644
--- a/lib.c
+++ b/lib.c
@@ -308,7 +308,7 @@ seq_info_t seq_info(val obj)
if (maybe_slot(obj, car_s))
ret.kind = SEQ_LISTLIKE;
else
- ret.kind = SEQ_NOTSEQ;
+ ret.kind = SEQ_NOTSEQ;
} else {
ret.kind = SEQ_NOTSEQ;
}