Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 1.9, 1.9.1, and 1.9.2

grep: avoid dups in visual diff file lists

Changeset ab86765f6368

Parent e92717abdbd8

by Steve Borho

Changes to one file · Browse files at ab86765f6368 Showing diff from parent e92717abdbd8 Diff from another changeset...

 
429
430
431
432
 
433
434
435
 
436
437
438
 
429
430
431
 
432
433
434
 
435
436
437
438
@@ -429,10 +429,10 @@
  while rows:   defer = []   crev = rows[0][0] - files = [rows[0][1]] + files = set([rows[0][1]])   for rev, path, line in rows[1:]:   if rev == crev: - files.append(path) + files.add(path)   else:   defer.append([rev, path, line])   if crev is not None: