Skip to content

Commit 74a3263

Browse files
author
kalibera
committed
Fix list of handled vowels (PR#18939).
git-svn-id: https://svn.r-project.org/R/trunk@88713 00db46b3-68df-0310-9c12-caf00c1e9a41
1 parent efa5185 commit 74a3263

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/character.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -826,8 +826,8 @@ static int vowels[] = {
826826
0x61, 0x65, 0x69, 0x6f, 0x75,
827827
0xe0, 0xe1, 0xe2, 0xe3, 0xe4, 0xe5,
828828
0xe8, 0xe9, 0xea, 0xeb, 0xec, 0xed, 0xee, 0xef,
829-
0xf2, 0xf3, 0xf4, 0xf5, 0xf6, 0xf8, 0xf9, 0xfa, 0xfb, 0xfc,
830-
0x101, 0x103, 0x105, 0x113, 0x115, 0x117, 0x118, 0x11b,
829+
0xf2, 0xf3, 0xf4, 0xf5, 0xf6, 0xf8, 0xf9, 0xfa, 0xfb, 0xfc, 0xfd,
830+
0x101, 0x103, 0x105, 0x113, 0x115, 0x117, 0x119, 0x11b,
831831
0x129, 0x12b, 0x12d, 0x12f, 0x131, 0x14d, 0x14f, 0x151,
832832
0x169, 0x16b, 0x16d, 0x16f, 0x171, 0x173
833833
};

0 commit comments

Comments
 (0)