From 1348cc89064f8d82fd0d53e06c60d5e9ea44aa5d Mon Sep 17 00:00:00 2001 From: Al Date: Sun, 17 May 2015 12:02:46 -0400 Subject: [PATCH] [transliteration] Switching the begin/end set chars --- src/transliterate.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/transliterate.h b/src/transliterate.h index 1888bbc9..a4ff7715 100644 --- a/src/transliterate.h +++ b/src/transliterate.h @@ -98,11 +98,11 @@ typedef struct transliteration_table { #define REPEAT_ONE_CHAR "\x06" #define REPEAT_ONE_CODEPOINT 6 #define REPEAT_ONE_CHAR_LEN strlen(REPEAT_ONE_CHAR) -#define BEGIN_SET_CHAR "\x0e" -#define BEGIN_SET_CODEPOINT 14 +#define BEGIN_SET_CHAR "\x0f" +#define BEGIN_SET_CODEPOINT 15 #define BEGIN_SET_CHAR_LEN strlen(BEGIN_SET_CHAR) -#define END_SET_CHAR "\x0f" -#define END_SET_CODEPOINT 15 +#define END_SET_CHAR "\x0e" +#define END_SET_CODEPOINT 14 #define END_SET_CHAR_LEN strlen(END_SET_CHAR) #define GROUP_INDICATOR_CHAR "\x10"