diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog.unicode | 5 | ||||
| -rw-r--r-- | src/xdisp.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/src/ChangeLog.unicode b/src/ChangeLog.unicode index 6331cc2dd87..61b3e8cd76d 100644 --- a/src/ChangeLog.unicode +++ b/src/ChangeLog.unicode | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2007-10-11 Miles Bader <miles@gnu.org> | ||
| 2 | |||
| 3 | * xdisp.c (get_char_face_and_encoding): Remove extraneous definition. | ||
| 4 | Add extra args to FACE_FOR_CHAR. | ||
| 5 | |||
| 1 | 2007-09-20 Kenichi Handa <handa@m17n.org> | 6 | 2007-09-20 Kenichi Handa <handa@m17n.org> |
| 2 | 7 | ||
| 3 | * keymap.c (where_is_internal_1): If key is a cons, store the copy | 8 | * keymap.c (where_is_internal_1): If key is a cons, store the copy |
diff --git a/src/xdisp.c b/src/xdisp.c index 584ebea49f2..4a093495f37 100644 --- a/src/xdisp.c +++ b/src/xdisp.c | |||
| @@ -19562,7 +19562,7 @@ get_char_face_and_encoding (f, c, face_id, char2b, multibyte_p, display_p) | |||
| 19562 | /* Unibyte case. We don't have to encode, but we have to make | 19562 | /* Unibyte case. We don't have to encode, but we have to make |
| 19563 | sure to use a face suitable for unibyte. */ | 19563 | sure to use a face suitable for unibyte. */ |
| 19564 | STORE_XCHAR2B (char2b, 0, c); | 19564 | STORE_XCHAR2B (char2b, 0, c); |
| 19565 | face_id = FACE_FOR_CHAR (f, face, c); | 19565 | face_id = FACE_FOR_CHAR (f, face, c, -1, Qnil); |
| 19566 | face = FACE_FROM_ID (f, face_id); | 19566 | face = FACE_FROM_ID (f, face_id); |
| 19567 | } | 19567 | } |
| 19568 | else if (c < 128) | 19568 | else if (c < 128) |