Changeset 4490:9855b4b114ba for color.c

Show
Ignore:
Timestamp:
2005-12-16 10:49:40 (3 years ago)
Author:
Recai Oktas <roktas@…>
Branch:
HEAD
Message:

Use ascii_str* instead of mutt_str* in several places where it's needed.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • color.c

    r4343 r4490  
    310310  char *eptr; 
    311311 
    312   if (mutt_strncasecmp (s, "bright", 6) == 0) 
     312  if (ascii_strncasecmp (s, "bright", 6) == 0) 
    313313  { 
    314314    *attr |= brite; 
     
    317317 
    318318  /* allow aliases for xterm color resources */ 
    319   if (mutt_strncasecmp (s, "color", 5) == 0) 
     319  if (ascii_strncasecmp (s, "color", 5) == 0) 
    320320  { 
    321321    s += 5;