aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorKim F. Storm2005-03-22 23:01:17 +0000
committerKim F. Storm2005-03-22 23:01:17 +0000
commit3a2b4c84ccc212721da2a8d73ebe794194bf2b51 (patch)
tree4cf9f510b719623a959f7b9ac31f5b2fe1bc4ddc /src
parent20a98505962f9fb4754455b354677864ed601db9 (diff)
downloademacs-3a2b4c84ccc212721da2a8d73ebe794194bf2b51.tar.gz
emacs-3a2b4c84ccc212721da2a8d73ebe794194bf2b51.zip
(handle_single_display_spec): Derive left-fringe and
right-fringe face from fringe face.
Diffstat (limited to 'src')
-rw-r--r--src/xdisp.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/xdisp.c b/src/xdisp.c
index 42f0097a7cb..a8559caa8d8 100644
--- a/src/xdisp.c
+++ b/src/xdisp.c
@@ -3726,7 +3726,8 @@ handle_single_display_spec (it, spec, object, position,
3726 if (CONSP (XCDR (XCDR (spec)))) 3726 if (CONSP (XCDR (XCDR (spec))))
3727 { 3727 {
3728 Lisp_Object face_name = XCAR (XCDR (XCDR (spec))); 3728 Lisp_Object face_name = XCAR (XCDR (XCDR (spec)));
3729 int face_id2 = lookup_named_face (it->f, face_name, 'A', 0); 3729 int face_id2 = lookup_derived_face (it->f, face_name,
3730 'A', FRINGE_FACE_ID, 0);
3730 if (face_id2 >= 0) 3731 if (face_id2 >= 0)
3731 face_id = face_id2; 3732 face_id = face_id2;
3732 } 3733 }