ref: ac25ac54fa79dad253cbc156c22c6685013f8499
parent: 02bdafb46c616df070bf16eba5faf337e071ccb0
author: Tor Andersson <tor.andersson@artifex.com>
date: Wed May 27 13:07:41 EDT 2020
Fix typo in comment.
--- a/utf.c
+++ b/utf.c
@@ -37,7 +37,7 @@
Rune1 = (1<<(Bit1+0*Bitx))-1, /* 0000 0000 0000 0000 0111 1111 */
Rune2 = (1<<(Bit2+1*Bitx))-1, /* 0000 0000 0000 0111 1111 1111 */
Rune3 = (1<<(Bit3+2*Bitx))-1, /* 0000 0000 1111 1111 1111 1111 */
- Rune4 = (1<<(Bit4+3*Bitx))-1, /* 0011 1111 1111 1111 1111 1111 */
+ Rune4 = (1<<(Bit4+3*Bitx))-1, /* 0001 1111 1111 1111 1111 1111 */
Maskx = (1<<Bitx)-1, /* 0011 1111 */
Testx = Maskx ^ 0xFF, /* 1100 0000 */