Question about Moses alphabetical sort order
I have a list of characters showing Moses sort order:
ʔ a ạ c c̣ cˀ ə ə̣ h ḥ ḥʷ i ị k kˀ kʷ kˀʷ l ḷ lˀ ḷˀ ɬ ƛˀ m mˀ n nˀ p pˀ q qˀ qʷ qʷˀ r rˀ s ṣ t tˀ u ụ w w̓ x xʷ x̣ x̣ʷ y ỵ̓ ʕ ʕˀ ʕʷ ʕˀʷ
However, when I look at the entries themselves, I see lots of instances of acute and grave accents. I need to know how those accents fit into the sort order.
Some background to this: in order to sort the entries according to the Moses sort order, I'm having to write a Java class that can be called on the server, which does the sorting. This class has to encapsulate the sort order in sequence. The actual sequence suggested by the list above is this:
[dot below], [combining glottal], [combining w], [combining comma above], ʔ a c ə h i k l ɬ ƛ m n p q r s t u w x y ʕ
In other words, the combining diacritics come first, followed by all the letters. Acute and grave presumably have to fit into the sequence of combining diacritics at the beginning. Can you tell me where they should show up?