Changeset 1156 for trunk/lib/Configuration.cc
- Timestamp:
- Aug 9, 2010, 6:18:30 AM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
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.