diff options
author | Kenichi Handa <handa@m17n.org> | 2007-11-12 02:30:30 +0000 |
---|---|---|
committer | Kenichi Handa <handa@m17n.org> | 2007-11-12 02:30:30 +0000 |
commit | ce9c2e7b3b0ccff5167bb3672cb6f2da652f522e (patch) | |
tree | 1eba2fd92f20a3e0f83ea05e1b310b4274300698 /src/xfaces.c | |
parent | da13a4be890638aa05bde5dae9f956206af2af5a (diff) | |
download | emacs-ce9c2e7b3b0ccff5167bb3672cb6f2da652f522e.tar.gz |
(face_for_overlay_string): Call lookup_face with
correct arguments (fix of synching with the trunk).
Diffstat (limited to 'src/xfaces.c')
-rw-r--r-- | src/xfaces.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/xfaces.c b/src/xfaces.c index fd7dbb88133..206dc685814 100644 --- a/src/xfaces.c +++ b/src/xfaces.c @@ -8292,7 +8292,7 @@ face_for_overlay_string (w, pos, region_beg, region_end, /* Look up a realized face with the given face attributes, or realize a new one for ASCII characters. */ - return lookup_face (f, attrs, 0, NULL); + return lookup_face (f, attrs); } |