aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen Winston2025-08-11 22:37:19 -0400
committerBen Winston2025-08-11 22:37:19 -0400
commitc2ac60418522c7b4951e9e94995d906744ec3ee9 (patch)
tree563bf587bbaed328c2cc8b9b1c1d16b524ab06c9
parent08fc84f9ff9fc527ffac8f4ad174d9813c7f5fc5 (diff)
use tilde for less-than
-rw-r--r--booki.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/booki.c b/booki.c
index 02d1105..28196e6 100644
--- a/booki.c
+++ b/booki.c
@@ -862,7 +862,7 @@ bool match_int(char* pattern, int candidate) {
if (*current_pos == '+') {
gt = true;
current_pos++;
- } else if (*current_pos == ',') {
+ } else if (*current_pos == '~') {
lt = true;
current_pos++;
}