diff options
author | James Booth <boothj5@gmail.com> | 2013-01-20 03:07:23 +0000 |
---|---|---|
committer | James Booth <boothj5@gmail.com> | 2013-01-20 03:07:23 +0000 |
commit | e9695c83aa7ff69782a4a012a9e36fe07c967881 (patch) | |
tree | 65a0c66ffdbba394376119f3f34f137e869174d5 | |
parent | 23d760137bce7bed2b509af12c0985e91771a59b (diff) | |
download | profani-tty-e9695c83aa7ff69782a4a012a9e36fe07c967881.tar.gz |
Added space before /who output
-rw-r--r-- | src/command.c | 1 | ||||
-rw-r--r-- | src/windows.c | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/src/command.c b/src/command.c index c755c72e..7d709315 100644 --- a/src/command.c +++ b/src/command.c @@ -1424,6 +1424,7 @@ _cmd_who(gchar **args, struct cmd_help_t help) if (conn_status != JABBER_CONNECTED) { cons_show("You are not currently connected."); } else { + cons_show(""); char *presence = args[0]; // bad arg diff --git a/src/windows.c b/src/windows.c index bf7ab6f1..b08ccd82 100644 --- a/src/windows.c +++ b/src/windows.c @@ -1165,7 +1165,7 @@ cons_show_info(const char * const contact) cons_show(""); _win_show_time(console->win, '-'); _presence_colour_on(console->win, presence); - wprintw(console->win, "%s\n", jid); + wprintw(console->win, "%s:\n", jid); _presence_colour_off(console->win, presence); if (name != NULL) { |