Changeset 1156


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

Location:
trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/NEWS

    r1130 r1156  
    44
    55Version 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)
    611
    712  A complete list of closed tickets can be found here [[br]]
  • 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.