--- a/src/conversation.c Fri Jul 28 21:18:24 2000 +0000 +++ b/src/conversation.c Sat Jul 29 03:29:09 2000 +0000 @@ -915,6 +915,8 @@ *len = 3; if ( !strncmp(m, ":-)", 3)) { face = gdk_pixmap_create_from_xpm_d(c->window->window, &mask, &c->window->style->white, smile_xpm); + } else if (!strncmp(m, "C:)", 3)) { + face = gdk_pixmap_create_from_xpm_d(c->window->window, &mask, &c->window->style->white, luke03_xpm); } else if (!strncmp(m, ":-(", 3)) { face = gdk_pixmap_create_from_xpm_d(c->window->window, &mask, &c->window->style->white, sad_xpm); } else if (!strncmp(m, ";-)", 3)) { @@ -952,6 +954,9 @@ if ( !strncmp(m, "O:-)", 4)) { face = gdk_pixmap_create_from_xpm_d(c->window->window, &mask, &c->window->style->white, angel_xpm); } + else if (!strncmp(m, "C:-)", 4)) { + face = gdk_pixmap_create_from_xpm_d(c->window->window, &mask, &c->window->style->white, luke03_xpm); + } if (face || strlen(m) < 6) return face; *len = 6;