From 2972b14b555f5738db202e930e5ecba6497e49e0 Mon Sep 17 00:00:00 2001 From: Paul Eggert Date: Wed, 21 Sep 2011 13:26:36 -0700 Subject: [PATCH] * fontset.c (reorder_font_vector): Fix min/MIN typo. --- src/fontset.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/fontset.c b/src/fontset.c index 7730f2e4fa9..891a89f8cd0 100644 --- a/src/fontset.c +++ b/src/fontset.c @@ -419,7 +419,7 @@ reorder_font_vector (Lisp_Object font_group, struct font *font) tail = XCDR (tail)) if (EQ (encoding, XCAR (tail))) break; - else if (score <= MIN (INT_MAX, MOST_POSITIVE_FIXNUM) - 0x100) + else if (score <= min (INT_MAX, MOST_POSITIVE_FIXNUM) - 0x100) score += 0x100; } else -- 2.39.2