git: 9front

Download patch

ref: f8e4c22ece73ff1c2b1c4f76d4f840cbdb490685
parent: 6cb9c1647fe6c4ac4610e81ba591ad75163a08f4
author: Jacob Moody <moody@posixcafe.org>
date: Fri Oct 4 20:43:38 EDT 2024

isalpharune(2): invalid Runes are just > Runemax

--- a/sys/man/2/isalpharune
+++ b/sys/man/2/isalpharune
@@ -48,8 +48,8 @@
 .PP
 The case-conversion routines return the character unchanged if it has no case.
 .PP
-If a rune contains a value that is not a valid codepoint (ie, values less than
-zero, or greater than Runemax), these routines return 0.
+If a rune contains a value that is not a valid codepoint (ie, greater than Runemax),
+these routines return 0.
 .SH SOURCE
 .B /sys/src/libc/port/mkrunetype.c
 .br
--