mq: qimport need wlock for --push - do that after releasing lock
qimport locking was introduced for phases in
29ea059be33c.
tag: run commit hook when lock is released (
issue3344)
templater: handle SyntaxError when parsing ui.logtemplate
Before, Mercurial would crash with a traceback ending with
SyntaxError: unmatched quotes
if you configured
[ui]
logtemplate = {rev}\n
The SyntaxError is now catched and the string is re-parsed without
requiring quotes.
i18n-pt_BR: synchronized with
95ca6c8b38da
tests: unify the last sh tests
This requires a slightly smarter check-code check for sed output filtering.
tests: run most check-code sh checks on continued lines too
Some false errors are degraded to warnings and whitelisted.
revlog: speed up prefix matching against nodes
The radix tree already contains all the information we need to
determine whether a short string is an unambiguous node identifier.
We now make use of this information.
In a kernel tree, this improves the performance of
"hg log -q -r
24bf01de75" from 0.27 seconds to 0.06.