From 6e41b2f2e22bd41c243042616ddccd1dae3511b9 Mon Sep 17 00:00:00 2001 From: Bruce Hill Date: Sun, 22 Sep 2019 19:47:59 -0700 Subject: [PATCH] Only toggle sort direction if it was the first sort and it was ~'d. --- bb.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bb.c b/bb.c index c508db2..32f3706 100644 --- a/bb.c +++ b/bb.c @@ -392,7 +392,7 @@ void set_sort(bb_t *bb, const char *sort) char *found; if ((found = strchr(bb->sort, s[1]))) { if (*s == '~') - *s = found[-1] == '+' ? '-' : '+'; + *s = found[-1] == '+' && found == &bb->sort[1] ? '-' : '+'; memmove(found-1, found+1, strlen(found+1)+1); } else if (*s == '~') *s = '+';