diff options
author | sabetts <sabetts> | 2004-02-27 09:29:25 +0000 |
---|---|---|
committer | sabetts <sabetts> | 2004-02-27 09:29:25 +0000 |
commit | 152a72b51659d4e7e7f919bf342c0b5f559ffefd (patch) | |
tree | 027e42a59d809b04aff0caab4de8c9aa80cee1ae /src/split.h | |
parent | f83599ce2cf6197a53e66a9a08854d0a51b50a35 (diff) | |
download | ratpoison-152a72b51659d4e7e7f919bf342c0b5f559ffefd.zip |
* src/screen.c (screen_free_nums): new function. prototype added
(init_screens): init rp_frame_numset
(init_screen): set screen's frames_numset to rp_frame_numset
* src/globals.h: new global prototype, rp_frame_numset
* src/globals.c: new global, rp_frame_numset
* src/split.c (find_last_frame): find the last from of all the
screens. prototype updated. Callers updated.
(find_frame_number): search all screens. prototype
updated. callers updated.
* src/actions.c (cmd_fselect): select from frames in all screens.
Diffstat (limited to 'src/split.h')
-rw-r--r-- | src/split.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/split.h b/src/split.h index ac87f4d..fee3af8 100644 --- a/src/split.h +++ b/src/split.h @@ -51,8 +51,8 @@ rp_frame *find_frame_right (rp_frame *frame); rp_frame *find_frame_left (rp_frame *frame); rp_frame *find_frame_down (rp_frame *frame); rp_frame *find_frame_up (rp_frame *frame); -rp_frame *find_last_frame (rp_screen *s); -rp_frame *find_frame_number (rp_screen *s, int num); +rp_frame *find_last_frame (); +rp_frame * find_frame_number (int num); rp_frame *current_frame (); |