emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] master 4010897: Fix flyspell highlighting


From: Paul Eggert
Subject: [Emacs-diffs] master 4010897: Fix flyspell highlighting
Date: Thu, 19 May 2016 15:02:43 +0000 (UTC)

branch: master
commit 40108979821637104d2ece39af8a27068544d3bd
Author: Paul Eggert <address@hidden>
Commit: Paul Eggert <address@hidden>

    Fix flyspell highlighting
    
    Problem reported by Jim Meyering (Bug#23575).
    * src/xdisp.c (extend_face_to_end_of_line):
    Fix typo in previous change.
---
 src/xdisp.c |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/xdisp.c b/src/xdisp.c
index bec7339..e18af2f 100644
--- a/src/xdisp.c
+++ b/src/xdisp.c
@@ -19635,8 +19635,8 @@ extend_face_to_end_of_line (struct it *it)
      to the end of the line.  If the background equals the background
      of the frame, we don't have to do anything.  */
   face = FACE_OPT_FROM_ID (f, (it->face_before_selective_p
-                              ? it->face_id
-                              : it->saved_face_id));
+                              ? it->saved_face_id
+                              : it->face_id));
 
   if (FRAME_WINDOW_P (f)
       && MATRIX_ROW_DISPLAYS_TEXT_P (it->glyph_row)



reply via email to

[Prev in Thread] Current Thread [Next in Thread]