Opened 14 years ago

Closed 14 years ago

#9 closed defect (fixed)

Horizontal tab in cfg files cannot be properly handled

Reported by: li@… Owned by: davidf
Priority: minor Milestone:
Component: HM Version:
Keywords: Cc: fbossen, ksuehring, davidf, jct-vc@…

Description

Horizontal tab in cfg files cannot be properly handled, which may result in that tools cannot be enabled/disabled by settings in cfg files. A possible solution may be the following revision in char* TAppOption::chomp( char *str )

const char cTab = 9; the char for tab

while( *str == whitespace
*str == cTab )

str++;

char *end = str+strlen(str)-1;

while( *end == whitespace
*end == cTab )

end--;

Change History (5)

comment:1 Changed 14 years ago by ksuehring

  • Owner set to davidf
  • Status changed from new to assigned

comment:2 Changed 14 years ago by davidf

  • Resolution set to fixed
  • Status changed from assigned to closed

This has been resolved in r61, with unified config and command line handling.

comment:3 Changed 12 years ago by davidf

  • Component set to HM

Updating component after adding WD (Text) tickets

comment:4 Changed 12 years ago by davidf

  • Cc fbossen ksuehring davidf added

comment:5 Changed 12 years ago by davidf

  • Cc jct-vc@… added
Note: See TracTickets for help on using tickets.

This list contains all users that will be notified about changes made to this ticket.

These roles will be notified: Reporter, Owner, Subscriber, Participant

  • David Flynn(Owner, Subscriber, Participant)
  • Frank Bossen(Subscriber)
  • jct-vc@…(Subscriber)
  • karl.sharman@…(Always)
  • Karsten Suehring(Subscriber, Participant, Always)
  • li@…(Reporter)