diff options
| author | Paul Eggert | 2016-05-19 08:02:13 -0700 |
|---|---|---|
| committer | Paul Eggert | 2016-05-19 08:02:39 -0700 |
| commit | 40108979821637104d2ece39af8a27068544d3bd (patch) | |
| tree | b7ceb7d07d3e85d15b8ab844262acf52b4bb6dfb /src | |
| parent | f995fbd9dc56bbf7bcf511b02afe1809165030e9 (diff) | |
| download | emacs-40108979821637104d2ece39af8a27068544d3bd.tar.gz emacs-40108979821637104d2ece39af8a27068544d3bd.zip | |
Fix flyspell highlighting
Problem reported by Jim Meyering (Bug#23575).
* src/xdisp.c (extend_face_to_end_of_line):
Fix typo in previous change.
Diffstat (limited to 'src')
| -rw-r--r-- | src/xdisp.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/xdisp.c b/src/xdisp.c index bec7339d064..e18af2fdf1d 100644 --- a/src/xdisp.c +++ b/src/xdisp.c | |||
| @@ -19635,8 +19635,8 @@ extend_face_to_end_of_line (struct it *it) | |||
| 19635 | to the end of the line. If the background equals the background | 19635 | to the end of the line. If the background equals the background |
| 19636 | of the frame, we don't have to do anything. */ | 19636 | of the frame, we don't have to do anything. */ |
| 19637 | face = FACE_OPT_FROM_ID (f, (it->face_before_selective_p | 19637 | face = FACE_OPT_FROM_ID (f, (it->face_before_selective_p |
| 19638 | ? it->face_id | 19638 | ? it->saved_face_id |
| 19639 | : it->saved_face_id)); | 19639 | : it->face_id)); |
| 19640 | 19640 | ||
| 19641 | if (FRAME_WINDOW_P (f) | 19641 | if (FRAME_WINDOW_P (f) |
| 19642 | && MATRIX_ROW_DISPLAYS_TEXT_P (it->glyph_row) | 19642 | && MATRIX_ROW_DISPLAYS_TEXT_P (it->glyph_row) |