diff options
Diffstat (limited to 'src/manage.c')
-rw-r--r-- | src/manage.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/manage.c b/src/manage.c index 1cdb66a..7a19934 100644 --- a/src/manage.c +++ b/src/manage.c @@ -267,7 +267,7 @@ update_window_information (rp_window *win) void unmanage (rp_window *w) { - return_window_number (w->number); + numset_release (rp_window_numset, w->number); list_del (&w->node); free_window (w); @@ -635,7 +635,7 @@ map_window (rp_window *win) /* Fill in the necessary data about the window */ update_window_information (win); - win->number = get_unique_window_number (); + win->number = numset_request (rp_window_numset); grab_prefix_key (win->w); /* Put win in the mapped window list */ @@ -719,7 +719,7 @@ withdraw_window (rp_window *win) /* Give back the window number. the window will get another one, if it is remapped. */ - return_window_number (win->number); + numset_release (rp_window_numset, win->number); win->number = -1; list_move_tail(&win->node, &rp_unmapped_window); |