Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • nick.c

    r9c7ef22 r3a27896  
    9494
    9595                nick_strip(irc, nick);
    96                 if (set_getbool(&bu->bee->set, "nick_lowercase")) {
     96                if (set_getbool(&bu->bee->set, "lcnicks")) {
    9797                        nick_lc(irc, nick);
    9898                }
     
    215215        if (ok && rets && *rets) {
    216216                nick_strip(irc, rets);
    217 
    218                 if (set_getbool(&bu->bee->set, "nick_lowercase")) {
    219                         nick_lc(irc, rets);
    220                 }
    221 
    222217                truncate_utf8(rets, MAX_NICK_LENGTH);
    223218                return rets;
     
    293288{
    294289        int len = 0;
    295         gboolean nick_underscores = irc ? set_getbool(&irc->b->set, "nick_underscores") : FALSE;
    296290
    297291        if (irc && (irc->status & IRC_UTF8_NICKS)) {
     
    303297                        n = g_utf8_find_next_char(p, NULL);
    304298
    305                         if (nick_underscores && c == ' ') {
    306                                 *p = '_';
    307                                 p = n;
    308                         } else if ((c < 0x7f && !(strchr(nick_lc_chars, c) ||
    309                                                   strchr(nick_uc_chars, c))) ||
     299                        if ((c < 0x7f && !(strchr(nick_lc_chars, c) ||
     300                                           strchr(nick_uc_chars, c))) ||
    310301                            !g_unichar_isgraph(c)) {
    311302                                strcpy(tmp, n);
     
    322313
    323314                for (i = len = 0; nick[i] && len < MAX_NICK_LENGTH; i++) {
    324                         if (nick_underscores && nick[i] == ' ') {
    325                                 nick[len] = '_';
    326                                 len++;
    327                         } else if (strchr(nick_lc_chars, nick[i]) ||
     315                        if (strchr(nick_lc_chars, nick[i]) ||
    328316                            strchr(nick_uc_chars, nick[i])) {
    329317                                nick[len] = nick[i];
Note: See TracChangeset for help on using the changeset viewer.