mercurial/fileset.py
changeset 38810 4fe8d1f077b8
parent 38805 b9162ea1b815
child 38826 6371ab78c3b3
equal deleted inserted replaced
38809:57af5ee15b35 38810:4fe8d1f077b8
    65 def negatematch(mctx, x):
    65 def negatematch(mctx, x):
    66     raise error.ParseError(_("can't use negate operator in this context"))
    66     raise error.ParseError(_("can't use negate operator in this context"))
    67 
    67 
    68 def listmatch(mctx, *xs):
    68 def listmatch(mctx, *xs):
    69     raise error.ParseError(_("can't use a list in this context"),
    69     raise error.ParseError(_("can't use a list in this context"),
    70                            hint=_('see hg help "filesets.x or y"'))
    70                            hint=_('see \'hg help "filesets.x or y"\''))
    71 
    71 
    72 def func(mctx, a, b):
    72 def func(mctx, a, b):
    73     funcname = getsymbol(a)
    73     funcname = getsymbol(a)
    74     if funcname in symbols:
    74     if funcname in symbols:
    75         return symbols[funcname](mctx, b)
    75         return symbols[funcname](mctx, b)