aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorEli Zaretskii2000-10-28 17:10:10 +0000
committerEli Zaretskii2000-10-28 17:10:10 +0000
commit25ffac29dc06150c05f9d6653388617624f4ddb4 (patch)
tree8ab8e03f5e1e89f3fa4baec69500157caf7dc30d /src
parent70de9f065a0515b43137df5a62a9d4b151c53bdf (diff)
downloademacs-25ffac29dc06150c05f9d6653388617624f4ddb4.tar.gz
emacs-25ffac29dc06150c05f9d6653388617624f4ddb4.zip
(reassert_line_highlight): Reverse the inverse-video effect
if inverse_video is non-zero.
Diffstat (limited to 'src')
-rw-r--r--src/term.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/term.c b/src/term.c
index c33d0553a1a..fc96d7d7129 100644
--- a/src/term.c
+++ b/src/term.c
@@ -712,7 +712,7 @@ reassert_line_highlight (highlight, vpos)
712 else if (chars_wasted && chars_wasted[vpos] == 0) 712 else if (chars_wasted && chars_wasted[vpos] == 0)
713 /* For terminals with standout markers, write one on this line 713 /* For terminals with standout markers, write one on this line
714 if there isn't one already. */ 714 if there isn't one already. */
715 write_standout_marker (highlight, vpos); 715 write_standout_marker (inverse_video ? !highlight : highlight, vpos);
716} 716}
717 717
718/* Call this when about to modify line at position VPOS 718/* Call this when about to modify line at position VPOS