diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/fontset.c | 2 |
1 files changed, 1 insertions, 1 deletions
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) | |||
| 419 | tail = XCDR (tail)) | 419 | tail = XCDR (tail)) |
| 420 | if (EQ (encoding, XCAR (tail))) | 420 | if (EQ (encoding, XCAR (tail))) |
| 421 | break; | 421 | break; |
| 422 | else if (score <= MIN (INT_MAX, MOST_POSITIVE_FIXNUM) - 0x100) | 422 | else if (score <= min (INT_MAX, MOST_POSITIVE_FIXNUM) - 0x100) |
| 423 | score += 0x100; | 423 | score += 0x100; |
| 424 | } | 424 | } |
| 425 | else | 425 | else |