From 65a47e5685546d2810293f249d2fdd589239926f Mon Sep 17 00:00:00 2001 From: sabetts Date: Fri, 23 Feb 2001 10:12:14 +0000 Subject: * main.c (main): passes return value of find_window_other() to set_active_window(). * list.h (remove_from_window_list): removed prototype (find_window_in_list): new prototype (append_to_list): likewise (insert_into_list): likewise (remove_from_list): likewise * list.c: propogated use of rp_unmapped_window_sentinel and rp_mapped_window_sentinel. (find_window_in_list): new function (find_window): calls find_window_in_list to search mapped and unmapped window lists. (remove_from_window_list): removed function (init_window_list): initialized sentinels (find_window_prev): searches only the mapped window list. (find_window_next): likewise (find_window_other): likewise (append_to_list): new function (insert_into_list): new function (remove_from_list): new function * events.c (unmap_notify): Searches only the mapped window list. moves the window from the unmapped window list to the mapped window list. * data.h: removed rp_window_head and rp_window_tail, updated dependant files. Added rp_mapped_window_sentinel and rp_unmapped_window_sentinel globals. * bar.c (update_window_names): loops only through mapped window list. --- src/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/main.c') diff --git a/src/main.c b/src/main.c index 16a7613..daa47f4 100644 --- a/src/main.c +++ b/src/main.c @@ -282,7 +282,7 @@ main (int argc, char *argv[]) initialize_default_keybindings (); /* Set an initial window as active. */ - set_active_window (rp_window_head); + set_active_window (find_window_other ()); handle_events (); -- cgit v1.2.3