1
1
mirror of https://github.com/profanity-im/profanity.git synced 2025-01-03 14:57:42 -05:00

Merge branch 'master' into plugins

This commit is contained in:
James Booth 2014-02-15 21:25:47 +00:00
commit 34e4c1c3b2

View File

@ -905,6 +905,11 @@ _cons_show_account(ProfAccount *account)
static void
_cons_show_aliases(GList *aliases)
{
if (aliases == NULL) {
cons_show("No aliases configured.");
return;
}
GList *curr = aliases;
if (curr != NULL) {
cons_show("Command aliases:");