comparison mercurial/cmdutil.py @ 35743:3c2a6246fd63

log: fix typo in comment about _matchfiles()
author Yuya Nishihara <yuya@tcha.org>
date Tue, 16 Jan 2018 21:46:17 +0900
parents 3e394e0558d7
children 3bd8ab4c80a5
comparison
equal deleted inserted replaced
35742:7a1806e0daea 35743:3c2a6246fd63
2434 if slowpath: 2434 if slowpath:
2435 # See walkchangerevs() slow path. 2435 # See walkchangerevs() slow path.
2436 # 2436 #
2437 # pats/include/exclude cannot be represented as separate 2437 # pats/include/exclude cannot be represented as separate
2438 # revset expressions as their filtering logic applies at file 2438 # revset expressions as their filtering logic applies at file
2439 # level. For instance "-I a -X a" matches a revision touching 2439 # level. For instance "-I a -X b" matches a revision touching
2440 # "a" and "b" while "file(a) and not file(b)" does 2440 # "a" and "b" while "file(a) and not file(b)" does
2441 # not. Besides, filesets are evaluated against the working 2441 # not. Besides, filesets are evaluated against the working
2442 # directory. 2442 # directory.
2443 matchargs = ['r:', 'd:relpath'] 2443 matchargs = ['r:', 'd:relpath']
2444 for p in pats: 2444 for p in pats: