From: Eli Zaretskii <eliz@gnu.org>
To: Chong Yidong <cyd@stupidchicken.com>
Cc: emacs-devel@gnu.org
Subject: Merge in revno 100770
Date: Thu, 15 Jul 2010 19:38:54 +0300 [thread overview]
Message-ID: <83r5j4g0o1.fsf@gnu.org> (raw)
This merge from the emacs-23 branch:
100770: Chong Yidong 2010-07-10 [merge] Merge changes from emacs-23 branch.
somehow managed to revert changes I did in fringe.c for bidi-aware
display of continuation bitmaps on the fringes (because obviously,
there's no such code on the branch). Specifically, it was due to the
merge of this bugfix commit on the branch:
99634.2.281: YAMAMOTO Mitsuharu 2010-07-05 Fix ghost buffer boundary
indicators in fringes (Bug#5634, Bug#6325).
Do we know how could that happen? Was that some snafu during manual
resolution of text conflicts, or a problem in Bazaar's automatic
merges?
For the record, the changes that were reverted are these, which were
part of a merge-commit I did in revno 99950 on the trunk:
=== modified file 'src/fringe.c'
--- src/fringe.c 2010-04-10 16:28:30 +0000
+++ src/fringe.c 2010-04-17 12:33:05 +0000
@@ -1090,7 +1090,8 @@ update_window_fringes (w, keep_current_p
: LEFT_FRINGE (2, Qtop, 0));
else if (row->indicate_eob_p && EQ (boundary_bot, Qleft))
left = LEFT_FRINGE (3, Qbottom, row->ends_at_zv_p);
- else if (MATRIX_ROW_CONTINUATION_LINE_P (row))
+ else if ((!row->reversed_p && MATRIX_ROW_CONTINUATION_LINE_P (row))
+ || (row->reversed_p && row->continued_p))
left = LEFT_FRINGE (4, Qcontinuation, 0);
else if (row->indicate_empty_line_p && EQ (empty_pos, Qleft))
left = LEFT_FRINGE (5, Qempty_line, 0);
@@ -1117,7 +1118,8 @@ update_window_fringes (w, keep_current_p
: RIGHT_FRINGE (2, Qtop, 0));
else if (row->indicate_eob_p && EQ (boundary_bot, Qright))
right = RIGHT_FRINGE (3, Qbottom, row->ends_at_zv_p);
- else if (row->continued_p)
+ else if ((!row->reversed_p && row->continued_p)
+ || (row->reversed_p && MATRIX_ROW_CONTINUATION_LINE_P (row)))
right = RIGHT_FRINGE (4, Qcontinuation, 0);
else if (row->indicate_top_line_p && EQ (arrow_top, Qright))
right = RIGHT_FRINGE (6, Qup, 0);
next reply other threads:[~2010-07-15 16:38 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2010-07-15 16:38 Eli Zaretskii [this message]
2010-07-15 17:17 ` Merge in revno 100770 Andreas Schwab
2010-07-15 21:37 ` Bojan Nikolic
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
List information: https://www.gnu.org/software/emacs/
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=83r5j4g0o1.fsf@gnu.org \
--to=eliz@gnu.org \
--cc=cyd@stupidchicken.com \
--cc=emacs-devel@gnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
Code repositories for project(s) associated with this public inbox
https://git.savannah.gnu.org/cgit/emacs.git
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).