From 09221a12124bd6c3b13d23c85932a26cae57edac Mon Sep 17 00:00:00 2001 From: sabetts Date: Thu, 18 Nov 2004 21:39:19 +0000 Subject: * src/window.c (unhide_transient_for): add a newline to debugging output. (hide_transient_for_between): likewise. * src/manage.c (get_wmname): typecast name when passing to xstrdup. * src/main.c (main): typecast command[i] when passing to send_command. * src/events.c (execute_remote_command): typecast req[1] when passing to command. (receive_command): typecast result when passing to XChangeProperty. * src/editor.c (editor_history_previous): Add newline to debugging output. (editor_history_next): likewise. (paste_primary_selection): typecast data when passing to editor_insert. * src/communications.c (receive_command_result): typecast result when passing to strlen. (send_command): typecast cmd when passing the XChangeProperty. * src/actions.c (user_commands): add focusprev (cmd_prev): clean up (cmd_next): likewise (cmd_prev_frame): call find_frame_prev instead of find_frame_next. (cmd_frestore): grab the frame's number first when processing the frames. --- src/window.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/window.c') diff --git a/src/window.c b/src/window.c index a286676..0ce8239 100644 --- a/src/window.c +++ b/src/window.c @@ -363,7 +363,7 @@ unhide_transient_for (rp_window *win) transient_for = find_window (win->transient_for); if (transient_for == NULL) { - PRINT_DEBUG (("Can't find transient_for for '%s'", win->name )); + PRINT_DEBUG (("Can't find transient_for for '%s'\n", win->name )); return; } @@ -403,7 +403,7 @@ hide_transient_for_between (rp_window *win, rp_window *last) transient_for = find_window (win->transient_for); if (transient_for == last) { - PRINT_DEBUG (("Can't find transient_for for '%s'", win->name )); + PRINT_DEBUG (("Can't find transient_for for '%s'\n", win->name )); return; } -- cgit v1.2.3