mercurial/revset.py
changeset 23166 30e0dcd7c5ff
parent 23165 7e8737e6ab08
child 23321 d716b1cec5cf
equal deleted inserted replaced
23165:7e8737e6ab08 23166:30e0dcd7c5ff
  1381     specified. You can match more than one field at a time.
  1381     specified. You can match more than one field at a time.
  1382     """
  1382     """
  1383     # i18n: "matching" is a keyword
  1383     # i18n: "matching" is a keyword
  1384     l = getargs(x, 1, 2, _("matching takes 1 or 2 arguments"))
  1384     l = getargs(x, 1, 2, _("matching takes 1 or 2 arguments"))
  1385 
  1385 
  1386     revs = getset(repo, baseset(repo.changelog), l[0])
  1386     revs = getset(repo, fullreposet(repo), l[0])
  1387 
  1387 
  1388     fieldlist = ['metadata']
  1388     fieldlist = ['metadata']
  1389     if len(l) > 1:
  1389     if len(l) > 1:
  1390             fieldlist = getstring(l[1],
  1390             fieldlist = getstring(l[1],
  1391                 # i18n: "matching" is a keyword
  1391                 # i18n: "matching" is a keyword