commands: clarify which aliases "hg help -v" show (
issue2572)
mq: record more data in patchheader class (no behavior changes)
* parse branch and nodeid header lines
* remember the line number where diffs started
Combined, these make mq.patchheader() very useful for parsing and
preserving a patch header through edits. TortoiseHg will use the
nodeid and parent to display these header datums in the graph when
patches are unapplied, and uses diffstartline to parse patch files
using record.parsepatch().
Added signature for changeset
e3bf16703e26
Added tag 1.7.3 for changeset
e3bf16703e26
util: fix ellipsis() not to break multi-byte sequence (
issue2564)
It tries to convert localstr to unicode before truncating.
Because we cannot assume that the given text is encoded in local encoding,
it falls back to raw string in case of unicode error.
strip: typo bugfix related to '--nobackup -> --no-backup' rename (
issue2377)
'--no-backup' in cmdline means *'no_backup'* in code'