about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorJames Booth <boothj5@gmail.com>2013-01-20 03:07:23 +0000
committerJames Booth <boothj5@gmail.com>2013-01-20 03:07:23 +0000
commite9695c83aa7ff69782a4a012a9e36fe07c967881 (patch)
tree65a0c66ffdbba394376119f3f34f137e869174d5
parent23d760137bce7bed2b509af12c0985e91771a59b (diff)
downloadprofani-tty-e9695c83aa7ff69782a4a012a9e36fe07c967881.tar.gz
Added space before /who output
-rw-r--r--src/command.c1
-rw-r--r--src/windows.c2
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) {