| 1016 if (gaim_prefs_get_bool("/gaim/gtk/conversations/send_underline")) { |
1016 if (gaim_prefs_get_bool("/gaim/gtk/conversations/send_underline")) { |
| 1017 g_snprintf(tmp, length, "<U>%s</U>", buf); |
1017 g_snprintf(tmp, length, "<U>%s</U>", buf); |
| 1018 strcpy(buf, tmp); |
1018 strcpy(buf, tmp); |
| 1019 } |
1019 } |
| 1020 |
1020 |
| 1021 if (gaim_prefs_get_bool("/gaim/gtk/conversations/send_strikethrough")) { |
|
| 1022 g_snprintf(tmp, length, "<S>%s</S>", buf); |
|
| 1023 strcpy(buf, tmp); |
|
| 1024 } |
|
| 1025 |
|
| 1026 if (gaim_prefs_get_bool("/gaim/gtk/conversations/use_custom_font")) { |
1021 if (gaim_prefs_get_bool("/gaim/gtk/conversations/use_custom_font")) { |
| 1027 const char *fontface; |
1022 const char *fontface; |
| 1028 |
1023 |
| 1029 fontface = gaim_prefs_get_string("/gaim/gtk/conversations/font_face"); |
1024 fontface = gaim_prefs_get_string("/gaim/gtk/conversations/font_face"); |
| 1030 |
1025 |