Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • nick.c

    r3a27896 rfe63ed3  
    186186                   LC_CTYPE being set to something other than C/POSIX. */
    187187                if (!(irc && irc->status & IRC_UTF8_NICKS)) {
    188                         asc = g_convert_with_fallback(part, -1, "ASCII//TRANSLIT", "UTF-8", "", NULL, NULL, NULL);
    189 
    190                         if (!asc) {
    191                                 /* If above failed, try again without //TRANSLIT.
    192                                    //TRANSLIT is a GNU iconv special and is not POSIX.
    193                                    Other platforms may not support it. */
    194                                 asc = g_convert_with_fallback(part, -1, "ASCII", "UTF-8", "", NULL, NULL, NULL);
    195                         }
    196 
    197                         part = asc;
     188                        part = asc = g_convert_with_fallback(part, -1, "ASCII//TRANSLIT",
     189                                                             "UTF-8", "", NULL, NULL, NULL);
    198190                }
    199191
Note: See TracChangeset for help on using the changeset viewer.