shithub: mc

Download patch

ref: b7eb902dc5451d0e74186bd65c5c90f87f785682
parent: 6c0e6856de4a72b7d6ab99a184d213b18a3dea14
author: Ori Bernstein <ori@eigenstate.org>
date: Fri Oct 12 06:01:40 EDT 2018

Fix typo in chartype.

--- a/lib/std/chartype.myr
+++ b/lib/std/chartype.myr
@@ -1622,7 +1622,7 @@
 }
 
 const istitle = {c
-	-> isupper(c) && islower(c)
+	-> isupper(c) && !islower(c)
 }
 
 const isascii = {c