From: Paul Eggert Date: Wed, 21 Sep 2011 20:26:36 +0000 (-0700) Subject: * fontset.c (reorder_font_vector): Fix min/MIN typo. X-Git-Tag: emacs-24.2.90~471^2~6^2~199 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=2972b14b555f5738db202e930e5ecba6497e49e0;p=emacs.git * fontset.c (reorder_font_vector): Fix min/MIN typo. --- 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