Changeset 1156
- Timestamp:
- Aug 9, 2010, 6:18:30 AM (13 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/NEWS
r1130 r1156 4 4 5 5 Version 0.9 (released NOT YET) 6 - It is now possible to override svn_props in config file (ticket #326) 7 - New configuration option 'copyright-string' (ticket #393) 8 - New configuration option 'file' (ticket #329) 9 - New configuration option 'blame-information' (ticket #330) 10 - New configuration option 'tab-size' (ticket #229) 6 11 7 12 A complete list of closed tickets can be found here [[br]] -
trunk/lib/Configuration.cc
r1155 r1156 219 219 } 220 220 } 221 else if (lhs=="tab _size") {221 else if (lhs=="tab-size") { 222 222 tab_size_ = strtoul(rhs.c_str(), NULL, 10); 223 223 if (tab_size_==0) { 224 224 throw Config_error(line, 225 "invalid value: tab_size must be a positive integer");225 "invalid value: tab-size must be a positive integer"); 226 226 } 227 227 else if (tab_size_ == ULONG_MAX) { … … 622 622 os << "# svndigest uses this value to replace tabs " 623 623 << "with spaces in blame output\n" 624 << "tab _size = " << conf.tab_size() << "\n";624 << "tab-size = " << conf.tab_size() << "\n"; 625 625 626 626
Note: See TracChangeset
for help on using the changeset viewer.