comparison pidgin/gtkconv.c @ 32732:97bf6c9ef9ab

Use proper newlines in /help output.
author Elliott Sales de Andrade <qulogic@pidgin.im>
date Sun, 04 Mar 2012 00:48:20 +0000
parents c631931c3794
children dfcad7368179
comparison
equal deleted inserted replaced
32731:f2478fe32c79 32732:97bf6c9ef9ab
492 g_string_append_printf(s, "%s", (char *)l->data); 492 g_string_append_printf(s, "%s", (char *)l->data);
493 } else { 493 } else {
494 g_string_append(s, _("No such command (in this context).")); 494 g_string_append(s, _("No such command (in this context)."));
495 } 495 }
496 } else { 496 } else {
497 s = g_string_new(_("Use \"/help &lt;command&gt;\" for help on a specific command.\n" 497 s = g_string_new(_("Use \"/help &lt;command&gt;\" for help on a specific command.<br/>"
498 "The following commands are available in this context:\n")); 498 "The following commands are available in this context:<br/>"));
499 499
500 text = purple_cmd_list(conv); 500 text = purple_cmd_list(conv);
501 for (l = text; l; l = l->next) 501 for (l = text; l; l = l->next)
502 if (l->next) 502 if (l->next)
503 g_string_append_printf(s, "%s, ", (char *)l->data); 503 g_string_append_printf(s, "%s, ", (char *)l->data);