diff options
| author | Ben Winston | 2025-08-11 22:37:19 -0400 |
|---|---|---|
| committer | Ben Winston | 2025-08-11 22:37:19 -0400 |
| commit | c2ac60418522c7b4951e9e94995d906744ec3ee9 (patch) | |
| tree | 563bf587bbaed328c2cc8b9b1c1d16b524ab06c9 | |
| parent | 08fc84f9ff9fc527ffac8f4ad174d9813c7f5fc5 (diff) | |
use tilde for less-than
| -rw-r--r-- | booki.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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++; } |
