diff options
author | sabetts <sabetts> | 2003-05-15 07:36:21 +0000 |
---|---|---|
committer | sabetts <sabetts> | 2003-05-15 07:36:21 +0000 |
commit | 55fadaecf93dfdf6a7c9510098057c5152e3b920 (patch) | |
tree | f1fc81a4aa497466f1cf5a497386ae994265984c /src/manage.c | |
parent | 2d8945e4ee37ceee9d58e91681c6d3722a83c956 (diff) | |
download | ratpoison-55fadaecf93dfdf6a7c9510098057c5152e3b920.zip |
* src/data.h (struct rp_frame): renamed from rp_window_frame. All
dependant code updated.
* src/main.c: remove child_info global. Add rp_children global.
(chld_handler): update the terminated and status fields of any
terminated children.
* src/events.c (handle_signals): loop through each child process
and remove them from the list. Print a message for any child that
doesn't return a 0 status.
* src/data.h (rp_child_info): new fields, terminated and node.
remove child_info global. Add rp_children global.
* src/actions.c (spawn): Add the command to the list of children.
Diffstat (limited to 'src/manage.c')
-rw-r--r-- | src/manage.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/manage.c b/src/manage.c index ee7de02..4f7fe14 100644 --- a/src/manage.c +++ b/src/manage.c @@ -475,7 +475,7 @@ get_state (rp_window *win) static void move_window (rp_window *win) { - rp_window_frame *frame; + rp_frame *frame; if (win->frame_number == EMPTY) return; @@ -528,7 +528,7 @@ move_window (rp_window *win) static void maximize_transient (rp_window *win) { - rp_window_frame *frame; + rp_frame *frame; int maxx, maxy; frame = win_get_frame (win); @@ -586,7 +586,7 @@ maximize_transient (rp_window *win) static void maximize_normal (rp_window *win) { - rp_window_frame *frame; + rp_frame *frame; int maxx, maxy; frame = win_get_frame (win); @@ -819,7 +819,7 @@ withdraw_window (rp_window *win) void hide_others (rp_window *win) { - rp_window_frame *frame; + rp_frame *frame; rp_window *cur; if (win == NULL) return; |