diff options
| author | Martin Rudalics | 2011-06-07 14:51:07 +0200 |
|---|---|---|
| committer | Martin Rudalics | 2011-06-07 14:51:07 +0200 |
| commit | fa8a67e67454a900e4cf7b93fed96f27ea41b1b8 (patch) | |
| tree | 3508a1b1b1d4a18ad171cf885e8f378b115955cc /src/ChangeLog | |
| parent | 81d63f1a46e650d576a071c7126acde3e886c078 (diff) | |
| download | emacs-fa8a67e67454a900e4cf7b93fed96f27ea41b1b8.tar.gz emacs-fa8a67e67454a900e4cf7b93fed96f27ea41b1b8.zip | |
Make delete_all_subwindows argument a Lisp_Object.
* window.c (delete_window, Fset_window_configuration): Call
delete_all_subwindows with window as argument.
(delete_all_subwindows): Take a window as argument and not a
structure. Rewrite.
* window.h: delete_all_subwindows now takes a Lisp_Object as
argument.
* frame.c (delete_frame): Call delete_all_subwindows with root
window as argument.
Diffstat (limited to 'src/ChangeLog')
| -rw-r--r-- | src/ChangeLog | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 5e51d8c6a76..c7bcdec0512 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -6,13 +6,21 @@ | |||
| 6 | (window_box_text_cols): Replace with window_body_cols. | 6 | (window_box_text_cols): Replace with window_body_cols. |
| 7 | (Fwindow_width, Fscroll_left, Fscroll_right): Use | 7 | (Fwindow_width, Fscroll_left, Fscroll_right): Use |
| 8 | window_body_cols instead of window_box_text_cols. | 8 | window_body_cols instead of window_box_text_cols. |
| 9 | (delete_window, Fset_window_configuration): Call | ||
| 10 | delete_all_subwindows with window as argument. | ||
| 11 | (delete_all_subwindows): Take a window as argument and not a | ||
| 12 | structure. Rewrite. | ||
| 9 | 13 | ||
| 10 | * window.h: Extern window_body_cols instead of | 14 | * window.h: Extern window_body_cols instead of |
| 11 | window_box_text_cols. | 15 | window_box_text_cols. delete_all_subwindows now takes a |
| 16 | Lisp_Object as argument. | ||
| 12 | 17 | ||
| 13 | * indent.c (compute_motion, Fcompute_motion): Use | 18 | * indent.c (compute_motion, Fcompute_motion): Use |
| 14 | window_body_cols instead of window_box_text_cols. | 19 | window_body_cols instead of window_box_text_cols. |
| 15 | 20 | ||
| 21 | * frame.c (delete_frame): Call delete_all_subwindows with root | ||
| 22 | window as argument. | ||
| 23 | |||
| 16 | 2011-06-07 Daniel Colascione <dan.colascione@gmail.com> | 24 | 2011-06-07 Daniel Colascione <dan.colascione@gmail.com> |
| 17 | 25 | ||
| 18 | * fns.c (Fputhash): Document return value. | 26 | * fns.c (Fputhash): Document return value. |