Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 0.9, 0.9.1, and 0.9.1.1

stable commit: fix off-by-one in reflow

Changeset 01bf6a8770bf

Parent 16086ce83e75

by Henrik Stuart

Changes to one file · Browse files at 01bf6a8770bf Showing diff from parent 16086ce83e75 Diff from another changeset...

 
559
560
561
562
 
563
564
565
 
559
560
561
 
562
563
564
565
@@ -559,7 +559,7 @@
  new_sentence = ['']     for part in parts: - if len(new_sentence[-1]) + len(part) > line_width: + if len(new_sentence[-1]) + len(part) + 1 > line_width:   new_sentence.append('')     new_sentence[-1] += '%s ' % part