Mercurial > emacs
changeset 91240:b2febf77e71c
(Ffont_get): Fix arguments to Fassoc.
author | Kenichi Handa <handa@m17n.org> |
---|---|
date | Tue, 18 Dec 2007 02:26:27 +0000 |
parents | 2fcaae6177a5 |
children | 6133244f82b7 |
files | src/font.c |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/src/font.c Sun Dec 16 05:08:49 2007 +0000 +++ b/src/font.c Tue Dec 18 02:26:27 2007 +0000 @@ -3027,7 +3027,7 @@ return AREF (font, idx); if (FONT_ENTITY_P (font)) return Qnil; - return Fcdr (Fassoc (AREF (font, FONT_EXTRA_INDEX), key)); + return Fcdr (Fassoc (key, AREF (font, FONT_EXTRA_INDEX))); }