diff options
author | sabetts <sabetts> | 2003-05-09 23:45:32 +0000 |
---|---|---|
committer | sabetts <sabetts> | 2003-05-09 23:45:32 +0000 |
commit | 0956c8bdb9a4b01a0e7aafd173b452f613b9637d (patch) | |
tree | 27e9e18f039a53813abe13a1cef5c1efd4498874 /src/main.c | |
parent | 24d5148b3ece4ff8d8c9ac1ec4be34fdd0b237bb (diff) | |
download | ratpoison-0956c8bdb9a4b01a0e7aafd173b452f613b9637d.zip |
* src/manage.h (clear_unmanaged_list): new prototype
(list_unmanaged_windows): likewise
(add_unmanaged_window): likewise
* src/manage.c (unmanaged_window_list): no longer a const.
(num_unmanaged_windows): new static global
(clear_unmanaged_list): new function
(list_unmanaged_windows): likewise
(add_unmanaged_window): likewise
(unmanaged_window): use num_unmanaged_windows to tell how many
elements are in the unmanaged list.
* src/actions.h (cmd_unmanage): new prototype
(cmd_clrunmanaged): likewise
* src/actions.c (user_commands): new commands unmanage,
clrunmanaged.
(cmd_unmanage): new function
(cmd_clrunmanaged): likewise
* src/bar.c (BAR_IS_HIDDEN): new define.
(update_bar): new function.
* src/actions.c (cmd_frestore): call update_bar() instead of
update_window_names().
* src/actions.c (cmd_frestore): update the window list after
restoring the frames.
Diffstat (limited to 'src/main.c')
-rw-r--r-- | src/main.c | 9 |
1 files changed, 5 insertions, 4 deletions
@@ -245,10 +245,11 @@ handler (Display *d, XErrorEvent *e) { char error_msg[100]; - if (e->request_code == X_ChangeWindowAttributes && e->error_code == BadAccess) { - fprintf(stderr, "ratpoison: There can be only ONE.\n"); - exit(EXIT_FAILURE); - } + if (e->request_code == X_ChangeWindowAttributes && e->error_code == BadAccess) + { + fprintf(stderr, "ratpoison: There can be only ONE.\n"); + exit(EXIT_FAILURE); + } #ifdef IGNORE_BADWINDOW return 0; |