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