Ignore:
Timestamp:
Aug 9, 2010, 6:18:30 AM (13 years ago)
Author:
Peter Johansson
Message:

mention ew config options in NEWS and change tab_size to tab-size for consistency to be more consistent

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/lib/Configuration.cc

    r1155 r1156  
    219219          }
    220220        }
    221         else if (lhs=="tab_size") {
     221        else if (lhs=="tab-size") {
    222222          tab_size_ = strtoul(rhs.c_str(), NULL, 10);
    223223          if (tab_size_==0) {
    224224            throw Config_error(line,
    225                           "invalid value: tab_size must be a positive integer");
     225                       "invalid value: tab-size must be a positive integer");
    226226          }
    227227          else if (tab_size_ == ULONG_MAX) {
     
    622622    os << "# svndigest uses this value to replace tabs "
    623623       << "with spaces in blame output\n"
    624        << "tab_size = " << conf.tab_size() << "\n";
     624       << "tab-size = " << conf.tab_size() << "\n";
    625625
    626626
Note: See TracChangeset for help on using the changeset viewer.