Only toggle sort direction if it was the first sort and it was ~'d.

This commit is contained in:
Bruce Hill 2019-09-22 19:47:59 -07:00
parent 7f8c16e5d9
commit 6e41b2f2e2

2
bb.c
View File

@ -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 = '+';