Mercurial > public > mercurial-scm > hg-stable
diff mercurial/cmdutil.py @ 14322:a90131b85fd8
scmutil: drop aliases in cmdutil for match functions
author | Matt Mackall <mpm@selenic.com> |
---|---|
date | Fri, 13 May 2011 14:58:24 -0500 |
parents | 003d63bb4fa5 |
children | a79fea6b3e77 |
line wrap: on
line diff
--- a/mercurial/cmdutil.py Fri May 13 14:48:48 2011 -0500 +++ b/mercurial/cmdutil.py Fri May 13 14:58:24 2011 -0500 @@ -12,10 +12,6 @@ import match as matchmod import subrepo -match = scmutil.match -matchall = scmutil.matchall -matchfiles = scmutil.matchfiles - def parsealiases(cmd): return cmd.lstrip("^").split("|") @@ -188,7 +184,7 @@ def walkpat(pat): srcs = [] badstates = after and '?' or '?r' - m = match(repo, [pat], opts, globbed=True) + m = scmutil.match(repo, [pat], opts, globbed=True) for abs in repo.walk(m): state = repo.dirstate[abs] rel = m.rel(abs) @@ -803,7 +799,7 @@ # options patch = False if opts.get('patch') or opts.get('stat'): - patch = matchall(repo) + patch = scmutil.matchall(repo) tmpl = opts.get('template') style = None @@ -844,7 +840,7 @@ """Find the tipmost changeset that matches the given date spec""" df = util.matchdate(date) - m = matchall(repo) + m = scmutil.matchall(repo) results = {} def prep(ctx, fns): @@ -1135,7 +1131,7 @@ if opts.get('addremove'): scmutil.addremove(repo, pats, opts) - return commitfunc(ui, repo, message, match(repo, pats, opts), opts) + return commitfunc(ui, repo, message, scmutil.match(repo, pats, opts), opts) def commiteditor(repo, ctx, subs): if ctx.description():