aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorPaul Eggert <[email protected]>2011-09-21 13:26:36 -0700
committerPaul Eggert <[email protected]>2011-09-21 13:26:36 -0700
commit2972b14b555f5738db202e930e5ecba6497e49e0 (patch)
tree6da2ce9d90621d7873e224910347cf002033c676 /src
parent17f85215fe27b3685df5a97e438c7a185088f29e (diff)
* fontset.c (reorder_font_vector): Fix min/MIN typo.
Diffstat (limited to 'src')
-rw-r--r--src/fontset.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fontset.c b/src/fontset.c
index 7730f2e4fa..891a89f8cd 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