diff options
| author | Martin Rudalics | 2011-06-06 15:57:49 +0200 |
|---|---|---|
| committer | Martin Rudalics | 2011-06-06 15:57:49 +0200 |
| commit | 727e958ef0548f3d8ce02a4a971247f52cc548ce (patch) | |
| tree | 2b1eb83cafeb3b8c6b337d8fc41451db86f24e98 /src/ChangeLog | |
| parent | bf60a96bc62eb465a482f5f95859a1147d0003d8 (diff) | |
| download | emacs-727e958ef0548f3d8ce02a4a971247f52cc548ce.tar.gz emacs-727e958ef0548f3d8ce02a4a971247f52cc548ce.zip | |
Move some window-related functions from frame.c to window.c.
* lisp.h: Move EXFUNS for Fframe_root_window,
Fframe_first_window and Fset_frame_selected_window to window.h.
* window.h: Move EXFUNS for Fframe_root_window,
Fframe_first_window and Fset_frame_selected_window here from
lisp.h.
* frame.c (Fwindow_frame, Fframe_first_window)
(Fframe_root_window, Fframe_selected_window)
(Fset_frame_selected_window): Move to window.c.
(Factive_minibuffer_window): Move to minibuf.c.
(Fother_visible_frames_p): New function.
* minibuf.c (Factive_minibuffer_window): Move here from frame.c.
* window.c (Fwindow_frame): Move here from frame.c. Accept any
window as argument.
(Fframe_root_window, Fframe_first_window)
(Fframe_selected_window): Move here from frame.c. Accept frame
or arbitrary window as argument. Update doc-strings.
(Fminibuffer_window): Move up in code.
(Fwindow_minibuffer_p): Move up in code and simplify.
(Fset_frame_selected_window): Move here from frame.c. Marginal
rewrite.
(Fselected_window, select_window, Fselect_window): Move up in
code. Minor doc-string fixes.
Diffstat (limited to 'src/ChangeLog')
| -rw-r--r-- | src/ChangeLog | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index e3ae905bac6..37fd595e270 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,11 +1,37 @@ | |||
| 1 | 2011-06-06 Martin Rudalics <rudalics@gmx.at> | 1 | 2011-06-06 Martin Rudalics <rudalics@gmx.at> |
| 2 | 2 | ||
| 3 | * lisp.h: Move EXFUNS for Fframe_root_window, | ||
| 4 | Fframe_first_window and Fset_frame_selected_window to window.h. | ||
| 5 | |||
| 6 | * window.h: Move EXFUNS for Fframe_root_window, | ||
| 7 | Fframe_first_window and Fset_frame_selected_window here from | ||
| 8 | lisp.h. | ||
| 9 | |||
| 10 | * frame.c (Fwindow_frame, Fframe_first_window) | ||
| 11 | (Fframe_root_window, Fframe_selected_window) | ||
| 12 | (Fset_frame_selected_window): Move to window.c. | ||
| 13 | (Factive_minibuffer_window): Move to minibuf.c. | ||
| 14 | (Fother_visible_frames_p): New function. | ||
| 15 | |||
| 16 | * minibuf.c (Factive_minibuffer_window): Move here from frame.c. | ||
| 17 | |||
| 3 | * window.c (decode_window, decode_any_window): Move up in code. | 18 | * window.c (decode_window, decode_any_window): Move up in code. |
| 4 | (Fwindowp, Fwindow_live_p): Rewrite doc-strings. | 19 | (Fwindowp, Fwindow_live_p): Rewrite doc-strings. |
| 5 | (inhibit_frame_unsplittable): Remove unused variable. | 20 | (inhibit_frame_unsplittable): Remove unused variable. |
| 6 | (Fwindow_buffer): Move up and rewrite doc-string. | 21 | (Fwindow_buffer): Move up and rewrite doc-string. |
| 7 | (Fwindow_parent, Fwindow_vchild, Fwindow_hchild, Fwindow_next) | 22 | (Fwindow_parent, Fwindow_vchild, Fwindow_hchild, Fwindow_next) |
| 8 | (Fwindow_prev): New functions. | 23 | (Fwindow_prev): New functions. |
| 24 | (Fwindow_frame): Move here from frame.c. Accept any window as | ||
| 25 | argument. | ||
| 26 | (Fframe_root_window, Fframe_first_window) | ||
| 27 | (Fframe_selected_window): Move here from frame.c. Accept frame | ||
| 28 | or arbitrary window as argument. Update doc-strings. | ||
| 29 | (Fminibuffer_window): Move up in code. | ||
| 30 | (Fwindow_minibuffer_p): Move up in code and simplify. | ||
| 31 | (Fset_frame_selected_window): Move here from frame.c. Marginal | ||
| 32 | rewrite. | ||
| 33 | (Fselected_window, select_window, Fselect_window): Move up in | ||
| 34 | code. Minor doc-string fixes. | ||
| 9 | 35 | ||
| 10 | 2011-06-06 Paul Eggert <eggert@cs.ucla.edu> | 36 | 2011-06-06 Paul Eggert <eggert@cs.ucla.edu> |
| 11 | 37 | ||