diff options
author | sabetts <sabetts> | 2001-08-27 19:21:21 +0000 |
---|---|---|
committer | sabetts <sabetts> | 2001-08-27 19:21:21 +0000 |
commit | e10959968f2b03cfc1865ed319336882c1df1c29 (patch) | |
tree | 22a021d0d6c6dbbceee1888309db5b43d6e39d25 | |
parent | 9737a39966ba9fad1f7d7819b0593b2f8bd99a1b (diff) | |
download | ratpoison-e10959968f2b03cfc1865ed319336882c1df1c29.zip |
pad the date with spaces
-rw-r--r-- | ChangeLog | 3 | ||||
-rw-r--r-- | src/actions.c | 2 |
2 files changed, 4 insertions, 1 deletions
@@ -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; |