From fa247ebe524f92fa95d344ba912f704262879c13 Mon Sep 17 00:00:00 2001
From: Behdad Esfahbod <behdad@behdad.org>
Date: Thu, 19 Jul 2012 19:52:19 -0400
Subject: [PATCH] [Indic] Better position U+0CD5

Fixes another 5% of Kannada failures.
---
 src/hb-ot-shape-complex-indic.cc | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/hb-ot-shape-complex-indic.cc b/src/hb-ot-shape-complex-indic.cc
index ea40100b2..0b4910d5a 100644
--- a/src/hb-ot-shape-complex-indic.cc
+++ b/src/hb-ot-shape-complex-indic.cc
@@ -139,8 +139,8 @@ consonant_position (hb_codepoint_t u, hb_ot_map_t *map, hb_font_t *font)
 				  IS_GUJA(u) ? POS_AFTER_POST  : \
 				  IS_ORYA(u) ? POS_AFTER_POST  : \
 				  IS_TAML(u) ? POS_AFTER_POST  : \
-				  IS_TELU(u) ? (u <= 0x0C42 ? POS_BEFORE_SUB : POS_AFTER_SUB)  : \
-				  IS_KNDA(u) ? POS_BEFORE_SUB  : \
+				  IS_TELU(u) ? (u <= 0x0C42 ? POS_BEFORE_SUB : POS_AFTER_SUB) : \
+				  IS_KNDA(u) ? (u != 0x0CD5 ? POS_BEFORE_SUB : POS_AFTER_SUB) : \
 				  IS_MLYM(u) ? POS_AFTER_POST  : \
 				  IS_SINH(u) ? POS_AFTER_SUB   : \
 				  /*default*/  POS_AFTER_SUB     \