diff src/fringe.c @ 108313:cda2e3e030af

Fix fringe truncation bitmaps in R2L lines. fringe.c (update_window_fringes): Set up truncation bitmaps for R2L lines.
author Eli Zaretskii <eliz@gnu.org>
date Sat, 08 May 2010 12:29:49 +0300
parents 5dc04900cbd7
children d418516def73
line wrap: on
line diff
--- a/src/fringe.c	Fri May 07 19:13:50 2010 -0700
+++ b/src/fringe.c	Sat May 08 12:29:49 2010 +0300
@@ -1082,7 +1082,8 @@
 	  left = row->left_user_fringe_bitmap;
 	  left_face_id = row->left_user_fringe_face_id;
 	}
-      else if (row->truncated_on_left_p)
+      else if ((!row->reversed_p && row->truncated_on_left_p)
+	       || (row->reversed_p && row->truncated_on_right_p))
 	left = LEFT_FRINGE(0, Qtruncation, 0);
       else if (row->indicate_bob_p && EQ (boundary_top, Qleft))
 	left = ((row->indicate_eob_p && EQ (boundary_bot, Qleft))
@@ -1110,7 +1111,8 @@
 	  right = row->right_user_fringe_bitmap;
 	  right_face_id = row->right_user_fringe_face_id;
 	}
-      else if (row->truncated_on_right_p)
+      else if ((!row->reversed_p && row->truncated_on_right_p)
+	       || (row->reversed_p && row->truncated_on_left_p))
 	right = RIGHT_FRINGE (0, Qtruncation, 0);
       else if (row->indicate_bob_p && EQ (boundary_top, Qright))
 	right = ((row->indicate_eob_p && EQ (boundary_bot, Qright))