diff options
| author | Kenichi Handa | 2011-11-11 16:08:47 +0900 |
|---|---|---|
| committer | Kenichi Handa | 2011-11-11 16:08:47 +0900 |
| commit | 0756b0c3a6e60dd623da6f12bc8d2de05ef7b8f1 (patch) | |
| tree | 0846cacac3ba56cb8d2054fbc851fee2fb9606d2 /src/ChangeLog | |
| parent | 9ac0394b8d1e54bf1b49291c85770af36a94531e (diff) | |
| parent | 68cbc58be59373e805fa200db02e4022e20050f0 (diff) | |
| download | emacs-0756b0c3a6e60dd623da6f12bc8d2de05ef7b8f1.tar.gz emacs-0756b0c3a6e60dd623da6f12bc8d2de05ef7b8f1.zip | |
merge trunk
Diffstat (limited to 'src/ChangeLog')
| -rw-r--r-- | src/ChangeLog | 68 |
1 files changed, 68 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index b09dae946f4..42dede8e300 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -3,6 +3,74 @@ | |||
| 3 | * xdisp.c (fill_composite_glyph_string): Always set s->face, to | 3 | * xdisp.c (fill_composite_glyph_string): Always set s->face, to |
| 4 | avoid a crash (bug#9496). | 4 | avoid a crash (bug#9496). |
| 5 | 5 | ||
| 6 | 2011-11-09 Chong Yidong <cyd@gnu.org> | ||
| 7 | |||
| 8 | * window.c (Fwindow_inside_edges, Fwindow_inside_pixel_edges) | ||
| 9 | (Fwindow_inside_absolute_pixel_edges): Only allow live windows. | ||
| 10 | |||
| 11 | 2011-11-08 Paul Eggert <eggert@cs.ucla.edu> | ||
| 12 | |||
| 13 | * s/gnu.h (GC_MARK_STACK): Define to GC_MAKE_GCPROS_NOOPS (Bug#9926). | ||
| 14 | |||
| 15 | 2011-11-08 Paul Eggert <eggert@cs.ucla.edu> | ||
| 16 | |||
| 17 | Avoid some portability problems by eschewing 'extern inline' functions. | ||
| 18 | The trivial performance wins aren't worth the portability hassles; see | ||
| 19 | <http://lists.gnu.org/archive/html/emacs-devel/2011-11/msg00084.html> | ||
| 20 | et seq. | ||
| 21 | * dispextern.h (window_box, window_box_height, window_text_bottom_y) | ||
| 22 | (window_box_width, window_box_left, window_box_left_offset) | ||
| 23 | (window_box_right, window_box_right_offset): Undo previous change, | ||
| 24 | by removing the "extern"s. | ||
| 25 | * intervals.c (adjust_intervals_for_insertion) | ||
| 26 | (adjust_intervals_for_deletion): Undo previous change, | ||
| 27 | making these static again. | ||
| 28 | (offset_intervals, temp_set_point_both, temp_set_point) | ||
| 29 | (copy_intervals_to_string): No longer inline. | ||
| 30 | * xdisp.c (window_text_bottom_y, window_box_width) | ||
| 31 | (window_box_height, window_box_left_offset) | ||
| 32 | (window_box_right_offset, window_box_left, window_box_right) | ||
| 33 | (window_box): No longer inline. | ||
| 34 | |||
| 35 | 2011-11-08 Chong Yidong <cyd@gnu.org> | ||
| 36 | |||
| 37 | * window.c (Fwindow_left_column, Fwindow_top_line): Doc fix. | ||
| 38 | (Fwindow_body_height, Fwindow_body_width): Move from Lisp. Signal | ||
| 39 | an error if not a live window. | ||
| 40 | (Fwindow_total_width, Fwindow_total_height): Move from Lisp. | ||
| 41 | (Fwindow_total_size, Fwindow_body_size): Move to Lisp. | ||
| 42 | |||
| 43 | 2011-11-07 Juanma Barranquero <lekktu@gmail.com> | ||
| 44 | |||
| 45 | * lisp.h (syms_of_abbrev): Remove declaration. | ||
| 46 | Reported by CHENG Gao <chenggao@royau.me>. | ||
| 47 | |||
| 48 | 2011-11-07 Eli Zaretskii <eliz@gnu.org> | ||
| 49 | |||
| 50 | * w32.c (check_windows_init_file): Don't look for term/w32-win.el | ||
| 51 | if Vpurify_flag is non-nil. Fixes a crash when running w32 build | ||
| 52 | of temacs in GUI mode. | ||
| 53 | |||
| 54 | 2011-11-07 Martin Rudalics <rudalics@gmx.at> | ||
| 55 | |||
| 56 | * window.h: Declare delete_all_child_windows instead of | ||
| 57 | delete_all_subwindows. | ||
| 58 | * window.c (Fwindow_nest, Fset_window_nest) | ||
| 59 | (Fset_window_new_total, Fset_window_new_normal) | ||
| 60 | (Fwindow_resize_apply): Don't use term subwindow in doc-strings. | ||
| 61 | (delete_all_subwindows): Rename to delete_all_child_windows. | ||
| 62 | (Fdelete_other_windows_internal, Fset_window_configuration): | ||
| 63 | Call delete_all_child_windows instead of delete_all_subwindows. | ||
| 64 | * frame.c (delete_frame): Call delete_all_child_windows instead | ||
| 65 | of delete_all_subwindows. | ||
| 66 | |||
| 67 | 2011-11-07 Paul Eggert <eggert@cs.ucla.edu> | ||
| 68 | |||
| 69 | * alloc.c (DEADP): New macro, for porting to GNU/Hurd (Bug#9926). | ||
| 70 | This is also needed for porting to any host where GC_MARK_STACK is | ||
| 71 | not GC_MAKE_GCPROS_NOOPS. | ||
| 72 | (which_symbols): Use it. | ||
| 73 | |||
| 6 | 2011-11-07 Kenichi Handa <handa@m17n.org> | 74 | 2011-11-07 Kenichi Handa <handa@m17n.org> |
| 7 | 75 | ||
| 8 | * coding.c (coding_set_destination): Check coding->src_pos only | 76 | * coding.c (coding_set_destination): Check coding->src_pos only |