# HG changeset patch # User Yuya Nishihara # Date 1428832831 -32400 # Node ID 077683371b7bd1baaa76266c37e277d59bdb7c5c # Parent 52628cd73d3e45163b69ed14a7cfbef86b0d9c7d revset: undocument wdir() until its command outputs get stable wdir() implementation is still incomplete and shouldn't be advertised to users. This patch will be backed out when - template values such as {rev} and {node} are settled - major commands and revsets work without crashing diff -r 52628cd73d3e -r 077683371b7b mercurial/commands.py --- a/mercurial/commands.py Thu Apr 16 18:30:08 2015 -0500 +++ b/mercurial/commands.py Sun Apr 12 19:00:31 2015 +0900 @@ -267,9 +267,6 @@ anyway, although the results will probably be neither useful nor desirable. - By default, annotate files in the parent of the working directory. - Use -r "wdir()" to annotate the working directory files. - Returns 0 on success. """ if not pats: diff -r 52628cd73d3e -r 077683371b7b mercurial/revset.py --- a/mercurial/revset.py Thu Apr 16 18:30:08 2015 -0500 +++ b/mercurial/revset.py Sun Apr 12 19:00:31 2015 +0900 @@ -1898,10 +1898,8 @@ """ return author(repo, subset, x) +# experimental def wdir(repo, subset, x): - """``wdir()`` - Working directory. - """ # i18n: "wdir" is a keyword getargs(x, 0, 0, _("wdir takes no arguments")) if None in subset: