]> git.eshelyaron.com Git - emacs.git/commitdiff
* fontset.c (reorder_font_vector): Fix min/MIN typo.
authorPaul Eggert <eggert@cs.ucla.edu>
Wed, 21 Sep 2011 20:26:36 +0000 (13:26 -0700)
committerPaul Eggert <eggert@cs.ucla.edu>
Wed, 21 Sep 2011 20:26:36 +0000 (13:26 -0700)
src/fontset.c

index 7730f2e4fa922b8d765726af50017d452264fe6a..891a89f8cd04aee07aed529c37964579cede3588 100644 (file)
@@ -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