bu5hm4n pushed a commit to branch master.

http://git.enlightenment.org/core/efl.git/commit/?id=805545ab68e420168277251a76faf0e4399c2d10

commit 805545ab68e420168277251a76faf0e4399c2d10
Author: Ali Alzyod <ali198...@gmail.com>
Date:   Tue Aug 25 10:15:08 2020 +0000

    evas_font_query: add Use parentheses within macros
    
    Differential Revision: https://phab.enlightenment.org/D12116
---
 src/lib/evas/common/evas_font.h | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/src/lib/evas/common/evas_font.h b/src/lib/evas/common/evas_font.h
index fbed8e64bf..5a582c0632 100644
--- a/src/lib/evas/common/evas_font.h
+++ b/src/lib/evas/common/evas_font.h
@@ -63,10 +63,10 @@ typedef unsigned long long    DATA64;
  * https://unicode.org/ivd/
  * https://www.freetype.org/freetype2/docs/reference/ft2-glyph_variants.html
 */
-#define VAR_SEQ(x) GENERIC_VARIATION_SEQUENCES(x) | 
IDEOGRAPHICS_VARIATION_SEQUENCES(x) | MANGOLIAN_VARIATION_SEQUENCES(x)
-#define GENERIC_VARIATION_SEQUENCES(x) (x>=0xFE00 && x<=0xFE0F) ? x : 0
-#define IDEOGRAPHICS_VARIATION_SEQUENCES(x) (x>=0xE0100 && x<=0xE01EF) ? x : 0
-#define MANGOLIAN_VARIATION_SEQUENCES(x) (x>=0x180B && x<=0x180D) ? x : 0
+#define VAR_SEQ(x) (GENERIC_VARIATION_SEQUENCES(x) | 
IDEOGRAPHICS_VARIATION_SEQUENCES(x) | MANGOLIAN_VARIATION_SEQUENCES(x))
+#define GENERIC_VARIATION_SEQUENCES(x) ((x>=0xFE00 && x<=0xFE0F) ? x : 0)
+#define IDEOGRAPHICS_VARIATION_SEQUENCES(x) ((x>=0xE0100 && x<=0xE01EF) ? x : 
0)
+#define MANGOLIAN_VARIATION_SEQUENCES(x) ((x>=0x180B && x<=0x180D) ? x : 0)
 /**
  * http://unicode.org/emoji/charts/emoji-variants.html
 */

-- 


Reply via email to