GNOME Bugzilla – Bug 342633
assert rangex[0] <= rangex[1] and range1[0] <= range1[1]
Last modified: 2009-09-01 01:35:31 UTC
Please describe the problem: #!/bin/sh mkdir /tmp/meld cd /tmp/meld echo a > a echo b > b echo 123 >> b echo c > c echo "merge either the right frame into the middle or the left to the middle" echo "observe the assertion error on stderr" meld a b c -------------------- Error message is: Traceback (most recent call last):
+ Trace 68379
self._after_text_modified(buffer, starting_at, -self.deleted_lines_pending)
change_range = self.linediffer.change_sequence( pane, startline, sizechange, self._get_texts())
changes[1] = self._change_sequence( 1, sequence, startidx, sizechange, texts)
assert rangex[0] <= rangex[1] and range1[0] <= range1[1] AssertionError
Steps to reproduce: 1. seee above script 2. 3. Actual results: assertion error see above Expected results: sane merge behavior, no error Does this happen every time? yes Other information:
Thanks, nice testcase.
Hardly critical though.
try patch http://bugzilla.gnome.org/attachment.cgi?id=132682 from bug http://bugzilla.gnome.org/show_bug.cgi?id=578303
This assertion doesn't trigger on Meld 1.3.1. As Vincent suggests, it looks like the fix from bug #578303 fixed this too. Closing - please reopen if you can reproduce with 1.3.1 or git head.