evas/textblock: fix my own boolean expression to be more obvious
authorYakov Goldberg <yakov.g@samsung.com>
Sun, 21 Jul 2013 08:57:11 +0000 (11:57 +0300)
committerYakov Goldberg <yakov.g@samsung.com>
Sun, 21 Jul 2013 08:57:11 +0000 (11:57 +0300)
src/lib/evas/canvas/evas_object_textblock.c

index 510c5511b286c3f7b340081d872933aeb9a649d1..927fb52ebbe32b9e90157e8cb7da8bc1f2c0da3d 100644 (file)
@@ -9040,8 +9040,7 @@ evas_textblock_cursor_geometry_bidi_get(const Evas_Textblock_Cursor *cur, Evas_C
 
 #ifdef BIDI_SUPPORT
 #define IS_RTL(par) ((par) % 2)
-#define IS_DIFFERENT_DIR(l1, l2) ((IS_RTL(l1) && (!IS_RTL(l2))) || \
-                                  ((!IS_RTL(l1)) && IS_RTL(l2)))
+#define IS_DIFFERENT_DIR(l1, l2) (IS_RTL(l1) != IS_RTL(l2))
    else
      {
         Evas_Object_Textblock_Line *ln = NULL;