Added tag 1.6.2 for changeset
c00f03a4982e
i18n-pt_BR: synchronized with
87dcf758309d
i18n-sv: synchronized with
56b41b2cc690
color: call correct superclass method in write_err
Without this fix, any calls to write_err would go to stdout instead of
stderr, and calls during pushbuffer would cause unpack ValueErrors on
popbuffer.
qfinish: fix range logic for --applied
qbase:qtip can include non-mq csets, use qbase::qtip instead
record: count lines changed as the number of lines added or removed
per "record" hunk
Record deals in hunks which are tighter than traditional patch hunks,
really only a single run of additions/removals. Another addition, even a
line after a fixed line is treated as a new hunk by record.
color: pass write/write_err to win32print correctly (
issue2312)
Added signature for changeset
bf1774d95bde
Added tag 1.6.1 for changeset
bf1774d95bde
i18n-pt_BR: synchronized with
db426935fa94
i18n-pt_BR: synchronized with
0e789549271d
i18n-sv: synchronized with
c47cb3193c53
help: fix bytes/digit confusion for hashes
spotted by FUJIWARA Katsunori <fujiwara@ascade.co.jp>
qpush --move: move the right patch even with comment lines
88fc876a4833 caused that we find the index of the moving patch in self.series
but look it up in self.full_series. The difference between these is that
full_series also contains comment lines, and we thus moved the wrong patch.
Use back self.full_series to find the moving patch, but take care of striping
the patch guard markers before comparing the patch name. Test cases have been
added for comments and empty lines in self.full_series, and for the case of
guarded patches.
Original patch contributed by Mads Kiilerich <mads@kiilerich.com>