aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorbanx <banxoo+github@gmail.com>2013-12-28 10:25:12 -0800
committerbanx <banxoo+github@gmail.com>2013-12-28 10:25:12 -0800
commit2b4aaa8715d709a9d360e5b6c662747055afda04 (patch)
tree9a3d395a669bd164cc44e54c75e3d50cde26bbcd
parent39b07a4031b0e25078859c4b65649d7b92ec0092 (diff)
parens
-rw-r--r--arabtype.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arabtype.c b/arabtype.c
index 9971078..12c6b43 100644
--- a/arabtype.c
+++ b/arabtype.c
@@ -76,7 +76,7 @@ bool is_arabic_letter(uint32_t cp)
bool is_linking_type(uint32_t cp)
{
- if is_arabic_letter(cp)
+ if( is_arabic_letter(cp) )
if( arabic_forms_b[cp - ARABIC_LETTER_START][INITIAL] || arabic_forms_b[cp - ARABIC_LETTER_START][MEDIAL] )
return true;
return false;