summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog3
-rw-r--r--src/actions.c2
2 files changed, 4 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 25d5b13..afe1960 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,8 @@
2001-08-27 Shawn <sabetts@hotdog>
+ * src/actions.c (cmd_clock): pad the time with spaces on either
+ side.
+
* src/manage.c (maximize_normal)[MAXSIZE_WINDOWS_ARE_TRANSIENTS]:
use maxx, maxy not the window's width and height.
diff --git a/src/actions.c b/src/actions.c
index b7ca8c7..a8a74fa 100644
--- a/src/actions.c
+++ b/src/actions.c
@@ -829,7 +829,7 @@ cmd_clock (int interactive, void *data)
strncpy(msg, tmp, strlen (tmp) - 1); /* Remove the newline */
msg[strlen(tmp) - 1] = 0;
- message (msg);
+ marked_message_printf (0, 0, " %s ", msg);
free (msg);
return NULL;