Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • lib/misc.c

    ra161d33 r613cc55  
    112112        { "gt",     ">" },
    113113        { "amp",    "&" },
    114         { "apos",   "'" },
    115114        { "quot",   "\"" },
    116115        { "aacute", "á" },
     
    144143        char *s = out, *cs;
    145144        int i, matched;
    146         int taglen;
    147145       
    148146        memset( out, 0, strlen( in ) + 1 );
     
    161159                                in ++;
    162160                       
    163                         taglen = in-cs-1;   /* not <0 because the above loop runs at least once */
    164161                        if( *in )
    165162                        {
    166                                 if( g_strncasecmp( cs+1, "b", taglen) == 0 )
    167                                         *(s++) = '\x02';
    168                                 else if( g_strncasecmp( cs+1, "/b", taglen) == 0 )
    169                                         *(s++) = '\x02';
    170                                 else if( g_strncasecmp( cs+1, "i", taglen) == 0 )
    171                                         *(s++) = '\x1f';
    172                                 else if( g_strncasecmp( cs+1, "/i", taglen) == 0 )
    173                                         *(s++) = '\x1f';
    174                                 else if( g_strncasecmp( cs+1, "br", 2) == 0 )
     163                                if( g_strncasecmp( cs+1, "br", 2) == 0 )
    175164                                        *(s++) = '\n';
    176165                                in ++;
Note: See TracChangeset for help on using the changeset viewer.