shithub: sam

Download patch

ref: f22e9bf91474c356d6783293e05991013171a0bc
parent: 4bec42c4a1bbb3697e8709724fbbf435c1fcff85
author: Aidan K. Wiggins <akw@oneiri.one>
date: Fri Mar 14 00:57:16 EDT 2025

Add missing condition to inmode()

The old function was isalnum, this adds back the numerics. (oops!)

--- a/sam/moveto.c
+++ b/sam/moveto.c
@@ -34,7 +34,7 @@
 int
 inmode(Rune r, int mode)
 {
-	return (mode == 0) ? isalpharune(r) : r && !isspacerune(r);
+	return (mode == 0) ? (isalpharune(r) || isdigitrune(r)) : r && !isspacerune(r);
 }
 
 int