mercurial/revset.py
branchstable
changeset 25996 b12e00a05d57
parent 25995 4f703dcc626f
child 25998 a7527c5769bb
equal deleted inserted replaced
25995:4f703dcc626f 25996:b12e00a05d57
  2278             ws.append(w)
  2278             ws.append(w)
  2279             ts.append(t)
  2279             ts.append(t)
  2280             del ss[:]
  2280             del ss[:]
  2281         for y in x[1:]:
  2281         for y in x[1:]:
  2282             w, t = optimize(y, False)
  2282             w, t = optimize(y, False)
  2283             if t[0] == 'string' or t[0] == 'symbol':
  2283             if t is not None and (t[0] == 'string' or t[0] == 'symbol'):
  2284                 ss.append((w, t))
  2284                 ss.append((w, t))
  2285                 continue
  2285                 continue
  2286             flushss()
  2286             flushss()
  2287             ws.append(w)
  2287             ws.append(w)
  2288             ts.append(t)
  2288             ts.append(t)