branch | stable |
changeset 15949 | d5edbbf55a75 |
parent 15938 | f8272c70eb7f |
child 15964 | 6e37b8282aa2 |
--- a/mercurial/revset.py Fri Jan 20 13:19:32 2012 -0200 +++ b/mercurial/revset.py Fri Jan 20 14:18:51 2012 -0600 @@ -79,7 +79,7 @@ pos += 1 while pos < l: # find end of symbol d = program[pos] - if not (d.isalnum() or d in "._" or ord(d) > 127): + if not (d.isalnum() or d in "._/" or ord(d) > 127): break if d == '.' and program[pos - 1] == '.': # special case for .. pos -= 1