Changeset 445:bdc861d0f856 for color.c

Show
Ignore:
Timestamp:
1998-10-14 01:32:35 (10 years ago)
Author:
Thomas Roessler <roessler@…>
Branch:
HEAD
Message:

Adding some necessary ifdefs to color.c, From
Irving_Wolfe@….

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • color.c

    r437 r445  
    755755  int dry_run = 0; 
    756756   
     757#ifdef HAVE_COLOR 
    757758  if(option(OPTNOCURSES) || has_colors()) 
    758759    dry_run = 1; 
    759    
     760#else 
     761  if(option(OPTNOCURSES)) 
     762    dry_run = 1; 
     763#endif 
     764 
    760765  return _mutt_parse_color(buff, s, err, parse_attr_spec, dry_run); 
    761766}