##// END OF EJS Templates
revset: undocument wdir() until its command outputs get stable...
Yuya Nishihara -
r24777:07768337 default
parent child Browse files
Show More
@@ -267,9 +267,6 b' def annotate(ui, repo, *pats, **opts):'
267 anyway, although the results will probably be neither useful
267 anyway, although the results will probably be neither useful
268 nor desirable.
268 nor desirable.
269
269
270 By default, annotate files in the parent of the working directory.
271 Use -r "wdir()" to annotate the working directory files.
272
273 Returns 0 on success.
270 Returns 0 on success.
274 """
271 """
275 if not pats:
272 if not pats:
@@ -1898,10 +1898,8 b' def user(repo, subset, x):'
1898 """
1898 """
1899 return author(repo, subset, x)
1899 return author(repo, subset, x)
1900
1900
1901 # experimental
1901 def wdir(repo, subset, x):
1902 def wdir(repo, subset, x):
1902 """``wdir()``
1903 Working directory.
1904 """
1905 # i18n: "wdir" is a keyword
1903 # i18n: "wdir" is a keyword
1906 getargs(x, 0, 0, _("wdir takes no arguments"))
1904 getargs(x, 0, 0, _("wdir takes no arguments"))
1907 if None in subset:
1905 if None in subset:
General Comments 0
You need to be logged in to leave comments. Login now