]> git.eshelyaron.com Git - emacs.git/commitdiff
(handle_single_display_spec): Derive left-fringe and
authorKim F. Storm <storm@cua.dk>
Tue, 22 Mar 2005 23:01:17 +0000 (23:01 +0000)
committerKim F. Storm <storm@cua.dk>
Tue, 22 Mar 2005 23:01:17 +0000 (23:01 +0000)
right-fringe face from fringe face.

src/xdisp.c

index 42f0097a7cb16bdaceab241949919275cd6f4b55..a8559caa8d89a1794fc390238f68723306ee5a43 100644 (file)
@@ -3726,7 +3726,8 @@ handle_single_display_spec (it, spec, object, position,
       if (CONSP (XCDR (XCDR (spec))))
        {
          Lisp_Object face_name = XCAR (XCDR (XCDR (spec)));
-         int face_id2 = lookup_named_face (it->f, face_name, 'A', 0);
+         int face_id2 = lookup_derived_face (it->f, face_name,
+                                             'A', FRINGE_FACE_ID, 0);
          if (face_id2 >= 0)
            face_id = face_id2;
        }