]> git.eshelyaron.com Git - emacs.git/commitdiff
(fontset_find_font): Check if rfont_def is Qnil or not.
authorKenichi Handa <handa@m17n.org>
Thu, 30 Apr 2009 07:01:33 +0000 (07:01 +0000)
committerKenichi Handa <handa@m17n.org>
Thu, 30 Apr 2009 07:01:33 +0000 (07:01 +0000)
src/fontset.c

index 9007b30592e3e126bcbae9b7eaa1b10292ae2728..2d3f10d493c733b9527a5e22f037362a034e79d5 100644 (file)
@@ -631,6 +631,8 @@ fontset_find_font (fontset, c, face, id, fallback)
       for (i++; i < ASIZE (vec); i++)
        {
          rfont_def = AREF (vec, i);
+         if (NILP (rfont_def))
+           return Qt;
          if (! EQ (RFONT_DEF_FONT_DEF (rfont_def), font_def))
            break;
          font_object = RFONT_DEF_OBJECT (AREF (vec, i));