From 032aaef87df9dfa32a7efd4e9a19d11bfc1b7ad8 Mon Sep 17 00:00:00 2001 From: Nandini Rebello Date: Thu, 11 Oct 2018 16:53:32 +0530 Subject: [PATCH] sms: fix a missing entry in single shift table Fix a missing char in the nation language set in single shift table for a special character. Character set again validated. --- src/util.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/util.c b/src/util.c index 2f01cec1..70d72d72 100644 --- a/src/util.c +++ b/src/util.c @@ -376,6 +376,7 @@ static const struct codepoint ben_ext_gsm[] = { }; static const struct codepoint ben_ext_unicode[] = { + { 0x000C, 0x1B0A }, { 0x0022, 0x1B05 }, { 0X0023, 0x1B17 }, { 0x0024, 0x1B02 }, @@ -535,6 +536,7 @@ static const struct codepoint guj_ext_gsm[] = { }; static const struct codepoint guj_ext_unicode[] = { + { 0x000C, 0x1B0A }, { 0x0022, 0x1B05 }, { 0x0023, 0x1B17 }, { 0x0024, 0x1B02 },