diff options
| author | Paul Eggert | 2011-09-21 13:26:36 -0700 |
|---|---|---|
| committer | Paul Eggert | 2011-09-21 13:26:36 -0700 |
| commit | 2972b14b555f5738db202e930e5ecba6497e49e0 (patch) | |
| tree | 6da2ce9d90621d7873e224910347cf002033c676 /src | |
| parent | 17f85215fe27b3685df5a97e438c7a185088f29e (diff) | |
| download | emacs-2972b14b555f5738db202e930e5ecba6497e49e0.tar.gz emacs-2972b14b555f5738db202e930e5ecba6497e49e0.zip | |
* fontset.c (reorder_font_vector): Fix min/MIN typo.
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 |