aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/xfaces.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/xfaces.c b/src/xfaces.c
index 3a84ab02122..84a43b59ec6 100644
--- a/src/xfaces.c
+++ b/src/xfaces.c
@@ -7301,7 +7301,7 @@ compute_char_face (f, ch, prop)
7301 if (NILP (prop)) 7301 if (NILP (prop))
7302 { 7302 {
7303 struct face *face = FACE_FROM_ID (f, DEFAULT_FACE_ID); 7303 struct face *face = FACE_FROM_ID (f, DEFAULT_FACE_ID);
7304 face_id = FACE_FOR_CHAR (f, face, ch); 7304 face_id = FACE_FOR_CHAR (f, face, ch, -1, Qnil);
7305 } 7305 }
7306 else 7306 else
7307 { 7307 {
@@ -7313,7 +7313,7 @@ compute_char_face (f, ch, prop)
7313 if (! ASCII_CHAR_P (ch)) 7313 if (! ASCII_CHAR_P (ch))
7314 { 7314 {
7315 face = FACE_FROM_ID (f, face_id); 7315 face = FACE_FROM_ID (f, face_id);
7316 face_id = FACE_FOR_CHAR (f, face, ch); 7316 face_id = FACE_FOR_CHAR (f, face, ch, -1, Qnil);
7317 } 7317 }
7318 } 7318 }
7319 7319