Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 1.0, 1.0.1, and 1.0.2

commit: allow either summary or message length to be unconfigured

Changeset 1dd70e8ae60b

Parent 36379d56c65d

by Steve Borho

Changes to one file · Browse files at 1dd70e8ae60b Showing diff from parent 36379d56c65d Diff from another changeset...

 
1225
1226
1227
1228
1229
 
 
1230
1231
1232
 
1225
1226
1227
 
 
1228
1229
1230
1231
1232
@@ -1225,8 +1225,8 @@
  end = start.copy()   end.forward_line()   line = buf.get_text(start, end).rstrip('\n\r') - if (line_num == 0 and len(line) > sumlen) \ - or len(line) > maxlen: + limit = (line_num == 0) and sumlen or maxlen + if limit and len(line) > limit:   buf.apply_tag_by_name('over', start, end)     def msg_paste_fnames(self, sender):