diff options
| author | Paul Eggert | 2011-02-17 23:44:39 -0800 |
|---|---|---|
| committer | Paul Eggert | 2011-02-17 23:44:39 -0800 |
| commit | 37b3d30244ad822e049b6b20c2eadf5946cb02cc (patch) | |
| tree | 49bfe5e475aee761975f2618be4ee1b7c8371a72 /src/ChangeLog | |
| parent | 0ca2f89e09202a02f392c1defba2105b69c01419 (diff) | |
| parent | 7d315eb67800796d7d7f39030eb7682340d985e5 (diff) | |
| download | emacs-37b3d30244ad822e049b6b20c2eadf5946cb02cc.tar.gz emacs-37b3d30244ad822e049b6b20c2eadf5946cb02cc.zip | |
Merge from mainline.
Diffstat (limited to 'src/ChangeLog')
| -rw-r--r-- | src/ChangeLog | 296 |
1 files changed, 267 insertions, 29 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 87649d3db20..356637b0709 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,241 @@ | |||
| 1 | 2011-02-18 Stefan Monnier <monnier@iro.umontreal.ca> | ||
| 2 | |||
| 3 | * lisp.h (BYTE_MARK_STACK): New macro. | ||
| 4 | (mark_byte_stack): Only declare if BYTE_MARK_STACK is set. | ||
| 5 | |||
| 6 | * bytecode.c (BYTE_MAINTAIN_TOP): New macros. | ||
| 7 | (struct byte_stack): Only define `top' and `bottom' if used. | ||
| 8 | (mark_byte_stack): Only define if used. | ||
| 9 | (BEFORE_POTENTIAL_GC, AFTER_POTENTIAL_GC): Nullify if BYTE_MAINTAIN_TOP | ||
| 10 | is not set. | ||
| 11 | (Fbyte_code): Don't set `bottom' unless BYTE_MAINTAIN_TOP is set. | ||
| 12 | |||
| 13 | * term.c (OUTPUT_IF): Use OUTPUT. | ||
| 14 | |||
| 15 | * alloc.c (Fgarbage_collect): When using stack scanning, don't | ||
| 16 | redundantly scan byte-code stacks, catchlist, and handlerlist. | ||
| 17 | |||
| 18 | 2011-02-17 Jan Djärv <jan.h.d@swipnet.se> | ||
| 19 | |||
| 20 | * nsfns.m (Fx_create_frame, ns_set_name_as_filename) | ||
| 21 | (Fns_read_file_name): Replace B_ with BVAR. | ||
| 22 | |||
| 23 | * nsterm.m (ns_term_init): Use KVAR. | ||
| 24 | |||
| 25 | 2011-02-16 Eli Zaretskii <eliz@gnu.org> | ||
| 26 | |||
| 27 | * msdos.c (internal_terminal_init): Use KVAR. | ||
| 28 | |||
| 29 | * w32fns.c (Fx_create_frame): Use KVAR. | ||
| 30 | |||
| 31 | * w32term.c (w32_create_terminal): Use KVAR. | ||
| 32 | |||
| 33 | * s/ms-w32.h (MODE_LINE_BINARY_TEXT): Remove. | ||
| 34 | (getloadavg): Declare prototype which was removed from lisp.h. | ||
| 35 | |||
| 36 | * xdisp.c (decode_mode_spec): Don't use MODE_LINE_BINARY_TEXT. | ||
| 37 | |||
| 38 | * fileio.c (Finsert_file_contents, Fwrite_region): | ||
| 39 | Remove references to buffer_file_type. | ||
| 40 | (syms_of_fileio): Don't intern and staticpro | ||
| 41 | find-buffer-file-type. | ||
| 42 | |||
| 43 | * callproc.c (syms_of_callproc): Remove references to | ||
| 44 | buffer_file_type. | ||
| 45 | |||
| 46 | * buffer.c (reset_buffer_local_variables): Don't set | ||
| 47 | buffer_file_type. | ||
| 48 | (init_buffer_once): Likewise. | ||
| 49 | (syms_of_buffer): Don't define buffer-file-type. | ||
| 50 | |||
| 51 | * buffer.h (struct buffer): Remove buffer_file_type. | ||
| 52 | |||
| 53 | 2011-02-16 Tom Tromey <tromey@parfait> | ||
| 54 | |||
| 55 | * callint.c (Fcall_interactively): Update for change to field names. | ||
| 56 | * doc.c (Fsubstitute_command_keys): Update for change to field names. | ||
| 57 | * cmds.c (Fself_insert_command): Update for change to field names. | ||
| 58 | * keymap.c (Fcurrent_active_maps, Fkey_binding) | ||
| 59 | (Fdescribe_buffer_bindings): Update for change to field names. | ||
| 60 | * macros.c (Fstart_kbd_macro, end_kbd_macro, Fend_kbd_macro) | ||
| 61 | (store_kbd_macro_char, Fcall_last_kbd_macro, Fexecute_kbd_macro): | ||
| 62 | Update for change to field names. | ||
| 63 | * keyboard.c (echo_char, echo_dash, echo_now, cancel_echoing) | ||
| 64 | (echo_length, echo_truncate, cmd_error, command_loop_1) | ||
| 65 | (read_char, kbd_buffer_store_event_hold, make_lispy_event) | ||
| 66 | (menu_bar_items, tool_bar_items, read_char_minibuf_menu_prompt) | ||
| 67 | (read_key_sequence, Fcommand_execute, Fexecute_extended_command) | ||
| 68 | (Fdiscard_input, init_kboard, init_keyboard, mark_kboards): | ||
| 69 | Update for change to field names. | ||
| 70 | * xfns.c (Fx_create_frame): Update for change to field names. | ||
| 71 | * xterm.c (x_connection_closed, x_term_init): Update for change to | ||
| 72 | field names. | ||
| 73 | * term.c (term_get_fkeys_1, CONDITIONAL_REASSIGN, init_tty): | ||
| 74 | Update for change to field names. | ||
| 75 | * window.c (window_scroll_pixel_based, window_scroll_line_based): | ||
| 76 | Update for change to field names. | ||
| 77 | * frame.c (make_frame_without_minibuffer, Fhandle_switch_frame) | ||
| 78 | (delete_frame): Update for change to field names. | ||
| 79 | * lisp.h (DEFVAR_KBOARD): Update for change to field names. | ||
| 80 | * keyboard.h (struct kboard): Rename all Lisp_Object fields. | ||
| 81 | (KBOARD_INTERNAL_FIELD, KVAR): New macros. | ||
| 82 | |||
| 83 | 2011-02-16 Tom Tromey <tromey@redhat.com> | ||
| 84 | |||
| 85 | * lisp.h (DEFVAR_BUFFER_DEFAULTS): Use BVAR. | ||
| 86 | |||
| 87 | 2011-02-16 Tom Tromey <tromey@parfait> | ||
| 88 | |||
| 89 | * xfns.c (x_create_tip_frame, Fx_show_tip): Replace B_ with BVAR. | ||
| 90 | * xfaces.c (compute_char_face): Replace B_ with BVAR. | ||
| 91 | * xdisp.c (pos_visible_p, init_iterator, reseat_1) | ||
| 92 | (message_dolog, update_echo_area, ensure_echo_area_buffers) | ||
| 93 | (with_echo_area_buffer, setup_echo_area_for_printing) | ||
| 94 | (set_message_1, update_menu_bar, update_tool_bar) | ||
| 95 | (text_outside_line_unchanged_p, redisplay_internal) | ||
| 96 | (try_scrolling, try_cursor_movement, redisplay_window) | ||
| 97 | (try_window_reusing_current_matrix, row_containing_pos) | ||
| 98 | (try_window_id, get_overlay_arrow_glyph_row, display_line) | ||
| 99 | (Fcurrent_bidi_paragraph_direction, display_mode_lines) | ||
| 100 | (decode_mode_spec_coding, decode_mode_spec, display_count_lines) | ||
| 101 | (get_window_cursor_type, note_mouse_highlight): Replace B_ with | ||
| 102 | BVAR. | ||
| 103 | * window.c (window_display_table, unshow_buffer, window_loop) | ||
| 104 | (window_min_size_2, set_window_buffer, Fset_window_buffer) | ||
| 105 | (select_window, Fforce_window_update, temp_output_buffer_show) | ||
| 106 | (Fset_window_configuration, save_window_save): Replace B_ with | ||
| 107 | BVAR. | ||
| 108 | * w32fns.c (x_create_tip_frame, Fx_show_tip, Fw32_shell_execute): | ||
| 109 | Replace B_ with BVAR. | ||
| 110 | * undo.c (record_point, record_insert, record_delete) | ||
| 111 | (record_marker_adjustment, record_first_change) | ||
| 112 | (record_property_change, Fundo_boundary, truncate_undo_list) | ||
| 113 | (Fprimitive_undo): Replace B_ with BVAR. | ||
| 114 | * syntax.h (Vstandard_syntax_table, CURRENT_SYNTAX_TABLE) | ||
| 115 | (SETUP_BUFFER_SYNTAX_TABLE): Replace B_ with BVAR. | ||
| 116 | * syntax.c (update_syntax_table, dec_bytepos, Fsyntax_table) | ||
| 117 | (Fset_syntax_table, Fmodify_syntax_entry, skip_chars) | ||
| 118 | (skip_syntaxes, scan_lists): Replace B_ with BVAR. | ||
| 119 | * search.c (compile_pattern_1, compile_pattern, looking_at_1) | ||
| 120 | (string_match_1, fast_looking_at, newline_cache_on_off) | ||
| 121 | (search_command, search_buffer, simple_search, boyer_moore) | ||
| 122 | (Freplace_match): Replace B_ with BVAR. | ||
| 123 | * process.c (get_process, list_processes_1, Fstart_process) | ||
| 124 | (Fmake_serial_process, Fmake_network_process) | ||
| 125 | (read_process_output, send_process, exec_sentinel) | ||
| 126 | (status_notify, setup_process_coding_systems): Replace B_ with | ||
| 127 | BVAR. | ||
| 128 | * print.c (PRINTDECLARE, PRINTPREPARE, PRINTFINISH, printchar) | ||
| 129 | (strout, print_string, temp_output_buffer_setup, print_object): | ||
| 130 | Replace B_ with BVAR. | ||
| 131 | * msdos.c (IT_frame_up_to_date): Replace B_ with BVAR. | ||
| 132 | * minibuf.c (read_minibuf, get_minibuffer, Fread_buffer): | ||
| 133 | Replace B_ with BVAR. | ||
| 134 | * marker.c (Fmarker_buffer, Fset_marker, set_marker_restricted) | ||
| 135 | (set_marker_both, set_marker_restricted_both, unchain_marker): | ||
| 136 | Replace B_ with BVAR. | ||
| 137 | * lread.c (readchar, unreadchar, openp, readevalloop) | ||
| 138 | (Feval_buffer, Feval_region): Replace B_ with BVAR. | ||
| 139 | * lisp.h (DOWNCASE_TABLE, UPCASE_TABLE): Replace B_ with BVAR. | ||
| 140 | * keymap.c (Flocal_key_binding, Fuse_local_map) | ||
| 141 | (Fcurrent_local_map, push_key_description) | ||
| 142 | (Fdescribe_buffer_bindings): Replace B_ with BVAR. | ||
| 143 | * keyboard.c (command_loop_1, read_char_minibuf_menu_prompt) | ||
| 144 | (read_key_sequence): Replace B_ with BVAR. | ||
| 145 | * intervals.h (TEXT_PROP_MEANS_INVISIBLE): Replace B_ with BVAR. | ||
| 146 | * intervals.c (set_point_both, get_local_map): Replace B_ with | ||
| 147 | BVAR. | ||
| 148 | * insdel.c (check_markers, insert_char, insert_1_both) | ||
| 149 | (insert_from_string_1, insert_from_gap, insert_from_buffer_1) | ||
| 150 | (adjust_after_replace, replace_range, del_range_2) | ||
| 151 | (modify_region, prepare_to_modify_buffer) | ||
| 152 | (Fcombine_after_change_execute): Replace B_ with BVAR. | ||
| 153 | * indent.c (buffer_display_table, recompute_width_table) | ||
| 154 | (width_run_cache_on_off, current_column, scan_for_column) | ||
| 155 | (Findent_to, position_indentation, compute_motion, vmotion): | ||
| 156 | Replace B_ with BVAR. | ||
| 157 | * fringe.c (get_logical_cursor_bitmap) | ||
| 158 | (get_logical_fringe_bitmap, update_window_fringes): Replace B_ | ||
| 159 | with BVAR. | ||
| 160 | * frame.c (make_frame_visible_1): Replace B_ with BVAR. | ||
| 161 | * font.c (font_at): Replace B_ with BVAR. | ||
| 162 | * fns.c (Fbase64_encode_region, Fbase64_decode_region, Fmd5): | ||
| 163 | Replace B_ with BVAR. | ||
| 164 | * filelock.c (unlock_all_files, Flock_buffer, Funlock_buffer) | ||
| 165 | (unlock_buffer): Replace B_ with BVAR. | ||
| 166 | * fileio.c (Fexpand_file_name, Ffile_directory_p) | ||
| 167 | (Ffile_regular_p, Ffile_selinux_context) | ||
| 168 | (Fset_file_selinux_context, Ffile_modes, Fset_file_modes) | ||
| 169 | (Fset_file_times, Ffile_newer_than_file_p, decide_coding_unwind) | ||
| 170 | (Finsert_file_contents, choose_write_coding_system) | ||
| 171 | (Fwrite_region, build_annotations, Fverify_visited_file_modtime) | ||
| 172 | (Fset_visited_file_modtime, auto_save_error, auto_save_1) | ||
| 173 | (Fdo_auto_save, Fset_buffer_auto_saved): Replace B_ with BVAR. | ||
| 174 | * editfns.c (region_limit, Fmark_marker, save_excursion_save) | ||
| 175 | (save_excursion_restore, Fprevious_char, Fchar_before) | ||
| 176 | (general_insert_function, Finsert_char, Finsert_byte) | ||
| 177 | (make_buffer_string_both, Finsert_buffer_substring) | ||
| 178 | (Fcompare_buffer_substrings, subst_char_in_region_unwind) | ||
| 179 | (subst_char_in_region_unwind_1, Fsubst_char_in_region) | ||
| 180 | (Ftranslate_region_internal, save_restriction_restore) | ||
| 181 | (Fchar_equal): Replace B_ with BVAR. | ||
| 182 | * dispnew.c (Fframe_or_buffer_changed_p): Replace B_ with BVAR. | ||
| 183 | * dispextern.h (WINDOW_WANTS_MODELINE_P) | ||
| 184 | (WINDOW_WANTS_HEADER_LINE_P): Replace B_ with BVAR. | ||
| 185 | * dired.c (directory_files_internal): Replace B_ with BVAR. | ||
| 186 | * data.c (swap_in_symval_forwarding, set_internal) | ||
| 187 | (Fmake_local_variable, Fkill_local_variable, Flocal_variable_p): | ||
| 188 | Replace B_ with BVAR. | ||
| 189 | * composite.c (fill_gstring_header) | ||
| 190 | (composition_compute_stop_pos, composition_adjust_point) | ||
| 191 | (Ffind_composition_internal): Replace B_ with BVAR. | ||
| 192 | * coding.c (decode_coding, encode_coding) | ||
| 193 | (make_conversion_work_buffer, decode_coding_gap) | ||
| 194 | (decode_coding_object, encode_coding_object) | ||
| 195 | (Fdetect_coding_region, Ffind_coding_systems_region_internal) | ||
| 196 | (Funencodable_char_position, Fcheck_coding_systems_region): | ||
| 197 | Replace B_ with BVAR. | ||
| 198 | * cmds.c (Fself_insert_command, internal_self_insert): Replace B_ | ||
| 199 | with BVAR. | ||
| 200 | * charset.c (Ffind_charset_region): Replace B_ with BVAR. | ||
| 201 | * character.h (FETCH_CHAR_ADVANCE, INC_BOTH, DEC_BOTH) | ||
| 202 | (ASCII_CHAR_WIDTH): Replace B_ with BVAR. | ||
| 203 | * character.c (chars_in_text, Fget_byte): Replace B_ with BVAR. | ||
| 204 | * category.h (Vstandard_category_table): Replace B_ with BVAR. | ||
| 205 | * category.c (check_category_table, Fcategory_table) | ||
| 206 | (Fset_category_table, char_category_set): Replace B_ with BVAR. | ||
| 207 | * casetab.c (Fcurrent_case_table, set_case_table): Replace B_ with | ||
| 208 | BVAR. | ||
| 209 | * casefiddle.c (casify_object, casify_region): Replace B_ with | ||
| 210 | BVAR. | ||
| 211 | * callproc.c (Fcall_process, Fcall_process_region): Replace B_ | ||
| 212 | with BVAR. | ||
| 213 | * callint.c (check_mark, Fcall_interactively): Replace B_ with | ||
| 214 | BVAR. | ||
| 215 | * bytecode.c (Fbyte_code): Replace B_ with BVAR. | ||
| 216 | * buffer.h (FETCH_CHAR, FETCH_CHAR_AS_MULTIBYTE, BVAR): Replace B_ | ||
| 217 | with BVAR. | ||
| 218 | * buffer.c (Fbuffer_live_p, Fget_file_buffer) | ||
| 219 | (get_truename_buffer, Fget_buffer_create) | ||
| 220 | (clone_per_buffer_values, Fmake_indirect_buffer, reset_buffer) | ||
| 221 | (reset_buffer_local_variables, Fbuffer_name, Fbuffer_file_name) | ||
| 222 | (Fbuffer_local_value, buffer_lisp_local_variables) | ||
| 223 | (Fset_buffer_modified_p, Frestore_buffer_modified_p) | ||
| 224 | (Frename_buffer, Fother_buffer, Fbuffer_enable_undo) | ||
| 225 | (Fkill_buffer, Fset_buffer_major_mode, set_buffer_internal_1) | ||
| 226 | (set_buffer_temp, Fset_buffer, set_buffer_if_live) | ||
| 227 | (Fbarf_if_buffer_read_only, Fbury_buffer, Ferase_buffer) | ||
| 228 | (Fbuffer_swap_text, swapfield_, Fbuffer_swap_text) | ||
| 229 | (Fset_buffer_multibyte, swap_out_buffer_local_variables) | ||
| 230 | (record_overlay_string, overlay_strings, init_buffer_once) | ||
| 231 | (init_buffer, syms_of_buffer): Replace B_ with BVAR. | ||
| 232 | |||
| 233 | 2011-02-16 Eli Zaretskii <eliz@gnu.org> | ||
| 234 | |||
| 235 | * xdisp.c (redisplay_internal): Resynchronize `w' if the selected | ||
| 236 | window is changed inside calls to do_pending_window_change. | ||
| 237 | (Bug#8020) | ||
| 238 | |||
| 1 | 2011-02-16 Paul Eggert <eggert@cs.ucla.edu> | 239 | 2011-02-16 Paul Eggert <eggert@cs.ucla.edu> |
| 2 | 240 | ||
| 3 | Remove no-longer needed getloadavg symbols. | 241 | Remove no-longer needed getloadavg symbols. |
| @@ -54,8 +292,8 @@ | |||
| 54 | * xmenu.c (apply_systemfont_to_dialog): Apply to *dialog.font. | 292 | * xmenu.c (apply_systemfont_to_dialog): Apply to *dialog.font. |
| 55 | (apply_systemfont_to_menu): Set resources *menubar*font and | 293 | (apply_systemfont_to_menu): Set resources *menubar*font and |
| 56 | *popup*font. Remove defflt. | 294 | *popup*font. Remove defflt. |
| 57 | (set_frame_menubar, create_and_show_popup_menu): Call | 295 | (set_frame_menubar, create_and_show_popup_menu): |
| 58 | apply_systemfont_to_menu before lw_create_widget. | 296 | Call apply_systemfont_to_menu before lw_create_widget. |
| 59 | 297 | ||
| 60 | 2011-02-14 Tom Tromey <tromey@redhat.com> | 298 | 2011-02-14 Tom Tromey <tromey@redhat.com> |
| 61 | 299 | ||
| @@ -84,8 +322,8 @@ | |||
| 84 | (PRINTPREPARE, PRINTFINISH, temp_output_buffer_setup) | 322 | (PRINTPREPARE, PRINTFINISH, temp_output_buffer_setup) |
| 85 | (print_object): Use B_. | 323 | (print_object): Use B_. |
| 86 | * font.c (font_at): Use B_. | 324 | * font.c (font_at): Use B_. |
| 87 | * fns.c (Fbase64_encode_region, Fbase64_decode_region, Fmd5): Use | 325 | * fns.c (Fbase64_encode_region, Fbase64_decode_region, Fmd5): |
| 88 | B_. | 326 | Use B_. |
| 89 | * callint.c (check_mark, Fcall_interactively): Use B_. | 327 | * callint.c (check_mark, Fcall_interactively): Use B_. |
| 90 | * editfns.c (region_limit, Fmark_marker, save_excursion_save) | 328 | * editfns.c (region_limit, Fmark_marker, save_excursion_save) |
| 91 | (save_excursion_restore, Fprevious_char, Fchar_before) | 329 | (save_excursion_restore, Fprevious_char, Fchar_before) |
| @@ -108,8 +346,8 @@ | |||
| 108 | (Freplace_match): Use B_. | 346 | (Freplace_match): Use B_. |
| 109 | * indent.c (buffer_display_table, recompute_width_table) | 347 | * indent.c (buffer_display_table, recompute_width_table) |
| 110 | (width_run_cache_on_off, current_column, scan_for_column) | 348 | (width_run_cache_on_off, current_column, scan_for_column) |
| 111 | (Findent_to, position_indentation, compute_motion, vmotion): Use | 349 | (Findent_to, position_indentation, compute_motion, vmotion): |
| 112 | B_. | 350 | Use B_. |
| 113 | * casefiddle.c (casify_object, casify_region): Use B_. | 351 | * casefiddle.c (casify_object, casify_region): Use B_. |
| 114 | * casetab.c (Fcurrent_case_table, set_case_table): Use B_. | 352 | * casetab.c (Fcurrent_case_table, set_case_table): Use B_. |
| 115 | * cmds.c (Fself_insert_command, internal_self_insert): Use B_. | 353 | * cmds.c (Fself_insert_command, internal_self_insert): Use B_. |
| @@ -123,8 +361,8 @@ | |||
| 123 | (Fdo_auto_save, Fset_buffer_auto_saved): Use B_. | 361 | (Fdo_auto_save, Fset_buffer_auto_saved): Use B_. |
| 124 | * minibuf.c (read_minibuf, get_minibuffer, Fread_buffer): Use B_. | 362 | * minibuf.c (read_minibuf, get_minibuffer, Fread_buffer): Use B_. |
| 125 | * marker.c (Fmarker_buffer, Fset_marker, set_marker_restricted) | 363 | * marker.c (Fmarker_buffer, Fset_marker, set_marker_restricted) |
| 126 | (set_marker_both, set_marker_restricted_both, unchain_marker): Use | 364 | (set_marker_both, set_marker_restricted_both, unchain_marker): |
| 127 | B_. | 365 | Use B_. |
| 128 | * insdel.c (check_markers, insert_char, insert_1_both) | 366 | * insdel.c (check_markers, insert_char, insert_1_both) |
| 129 | (insert_from_string_1, insert_from_gap, insert_from_buffer_1) | 367 | (insert_from_string_1, insert_from_gap, insert_from_buffer_1) |
| 130 | (adjust_after_replace, replace_range, del_range_2) | 368 | (adjust_after_replace, replace_range, del_range_2) |
| @@ -148,8 +386,8 @@ | |||
| 148 | (make_conversion_work_buffer, decode_coding_gap) | 386 | (make_conversion_work_buffer, decode_coding_gap) |
| 149 | (decode_coding_object, encode_coding_object) | 387 | (decode_coding_object, encode_coding_object) |
| 150 | (Fdetect_coding_region, Ffind_coding_systems_region_internal) | 388 | (Fdetect_coding_region, Ffind_coding_systems_region_internal) |
| 151 | (Funencodable_char_position, Fcheck_coding_systems_region): Use | 389 | (Funencodable_char_position, Fcheck_coding_systems_region): |
| 152 | B_. | 390 | Use B_. |
| 153 | * charset.c (Ffind_charset_region): Use B_. | 391 | * charset.c (Ffind_charset_region): Use B_. |
| 154 | * window.c (window_display_table, unshow_buffer, window_loop) | 392 | * window.c (window_display_table, unshow_buffer, window_loop) |
| 155 | (window_min_size_2, set_window_buffer, Fset_window_buffer) | 393 | (window_min_size_2, set_window_buffer, Fset_window_buffer) |
| @@ -406,8 +644,8 @@ | |||
| 406 | callers changed. | 644 | callers changed. |
| 407 | * editfns.c (general_insert_function): Change signature to | 645 | * editfns.c (general_insert_function): Change signature to |
| 408 | match changes to insert functions' signatures. | 646 | match changes to insert functions' signatures. |
| 409 | * keymap.c (map_keymap_char_table_item, map_keymap_internal): Use | 647 | * keymap.c (map_keymap_char_table_item, map_keymap_internal): |
| 410 | explicit cast when converting between void * and function pointer | 648 | Use explicit cast when converting between void * and function pointer |
| 411 | types, as C89 requires this. | 649 | types, as C89 requires this. |
| 412 | 650 | ||
| 413 | 2011-02-05 Paul Eggert <eggert@cs.ucla.edu> | 651 | 2011-02-05 Paul Eggert <eggert@cs.ucla.edu> |
| @@ -527,7 +765,7 @@ | |||
| 527 | 2011-02-01 Paul Eggert <eggert@cs.ucla.edu> | 765 | 2011-02-01 Paul Eggert <eggert@cs.ucla.edu> |
| 528 | 766 | ||
| 529 | format-time-string now supports subsecond time stamp resolution | 767 | format-time-string now supports subsecond time stamp resolution |
| 530 | * editfns.c (emacs_nmemftime): Renamed from emacs_memftimeu, | 768 | * editfns.c (emacs_nmemftime): Rename from emacs_memftimeu, |
| 531 | for consistency with its new argument and with gnulib nstrftime. | 769 | for consistency with its new argument and with gnulib nstrftime. |
| 532 | All callers changed. New argument NS. | 770 | All callers changed. New argument NS. |
| 533 | (Fformat_time_string): Check that the time argument's microseconds | 771 | (Fformat_time_string): Check that the time argument's microseconds |
| @@ -857,11 +1095,11 @@ | |||
| 857 | (history_delete_duplicates, inhibit_x_resources) | 1095 | (history_delete_duplicates, inhibit_x_resources) |
| 858 | (last_nonmenu_event, load_in_progress, max_specpdl_size) | 1096 | (last_nonmenu_event, load_in_progress, max_specpdl_size) |
| 859 | (minibuffer_auto_raise, print_escape_newlines, scroll_margin) | 1097 | (minibuffer_auto_raise, print_escape_newlines, scroll_margin) |
| 860 | (use_dialog_box, use_file_dialog): Remove declaration. Include | 1098 | (use_dialog_box, use_file_dialog): Remove declaration. |
| 861 | globals.h. | 1099 | Include globals.h. |
| 862 | * keymap.h (Voverriding_local_map) | 1100 | * keymap.h (Voverriding_local_map) |
| 863 | (Voverriding_local_map_menu_flag, meta_prefix_char): Remove | 1101 | (Voverriding_local_map_menu_flag, meta_prefix_char): |
| 864 | declaration. | 1102 | Remove declaration. |
| 865 | * keyboard.h (Vdouble_click_time, Vfunction_key_map) | 1103 | * keyboard.h (Vdouble_click_time, Vfunction_key_map) |
| 866 | (Vinput_method_function, Vkey_translation_map) | 1104 | (Vinput_method_function, Vkey_translation_map) |
| 867 | (Vlucid_menu_bar_dirty_flag, Vthis_original_command) | 1105 | (Vlucid_menu_bar_dirty_flag, Vthis_original_command) |
| @@ -879,16 +1117,16 @@ | |||
| 879 | (focus_follows_mouse): Remove declaration. | 1117 | (focus_follows_mouse): Remove declaration. |
| 880 | * fontset.h (Valternate_fontname_alist, Vfontset_alias_alist) | 1118 | * fontset.h (Valternate_fontname_alist, Vfontset_alias_alist) |
| 881 | (Vignore_relative_composition, Votf_script_alist) | 1119 | (Vignore_relative_composition, Votf_script_alist) |
| 882 | (Vuse_default_ascent, Vvertical_centering_font_regexp): Remove | 1120 | (Vuse_default_ascent, Vvertical_centering_font_regexp): |
| 883 | declaration. | 1121 | Remove declaration. |
| 884 | * font.h (Vfont_log): Remove declaration. | 1122 | * font.h (Vfont_log): Remove declaration. |
| 885 | * dosfns.h (Vdos_display_scancodes, Vdos_version) | 1123 | * dosfns.h (Vdos_display_scancodes, Vdos_version) |
| 886 | (Vdos_windows_version, dos_codepage, dos_country_code) | 1124 | (Vdos_windows_version, dos_codepage, dos_country_code) |
| 887 | (dos_decimal_point, dos_hyper_key, dos_keyboard_layout) | 1125 | (dos_decimal_point, dos_hyper_key, dos_keyboard_layout) |
| 888 | (dos_keypad_mode, dos_super_key, dos_timezone_offset): Remove | 1126 | (dos_keypad_mode, dos_super_key, dos_timezone_offset): |
| 889 | declaration. | 1127 | Remove declaration. |
| 890 | * disptab.h (Vglyph_table, Vstandard_display_table): Remove | 1128 | * disptab.h (Vglyph_table, Vstandard_display_table): |
| 891 | declaration. | 1129 | Remove declaration. |
| 892 | * dispextern.h (Vface_remapping_alist, Vglyphless_char_display) | 1130 | * dispextern.h (Vface_remapping_alist, Vglyphless_char_display) |
| 893 | (Vmouse_autoselect_window, Voverflow_newline_into_fringe) | 1131 | (Vmouse_autoselect_window, Voverflow_newline_into_fringe) |
| 894 | (Vshow_trailing_whitespace, Vtool_bar_button_margin) | 1132 | (Vshow_trailing_whitespace, Vtool_bar_button_margin) |
| @@ -916,10 +1154,10 @@ | |||
| 916 | (Vselect_safe_coding_system_function) | 1154 | (Vselect_safe_coding_system_function) |
| 917 | (Vtranslation_table_for_input, coding_system_require_warning) | 1155 | (Vtranslation_table_for_input, coding_system_require_warning) |
| 918 | (eol_mnemonic_dos, eol_mnemonic_mac, eol_mnemonic_undecided) | 1156 | (eol_mnemonic_dos, eol_mnemonic_mac, eol_mnemonic_undecided) |
| 919 | (eol_mnemonic_unix, inherit_process_coding_system): Remove | 1157 | (eol_mnemonic_unix, inherit_process_coding_system): |
| 920 | declaration. | 1158 | Remove declaration. |
| 921 | * charset.h (Vcharset_list, Vcurrent_iso639_language): Remove | 1159 | * charset.h (Vcharset_list, Vcurrent_iso639_language): |
| 922 | declaration. | 1160 | Remove declaration. |
| 923 | * character.h (Vauto_fill_chars, Vchar_direction_table) | 1161 | * character.h (Vauto_fill_chars, Vchar_direction_table) |
| 924 | (Vchar_script_table, Vchar_width_table, Vprintable_chars) | 1162 | (Vchar_script_table, Vchar_width_table, Vprintable_chars) |
| 925 | (Vscript_representative_chars, Vtranslation_table_vector) | 1163 | (Vscript_representative_chars, Vtranslation_table_vector) |
| @@ -1034,8 +1272,8 @@ | |||
| 1034 | (w32_strict_fontnames, w32_strict_painting): Remove. | 1272 | (w32_strict_fontnames, w32_strict_painting): Remove. |
| 1035 | (Vhourglass_delay, Vmenu_bar_mode, Vtool_bar_mode) | 1273 | (Vhourglass_delay, Vmenu_bar_mode, Vtool_bar_mode) |
| 1036 | (Vw32_recognize_altgr, Vwindow_system_version) | 1274 | (Vw32_recognize_altgr, Vwindow_system_version) |
| 1037 | (w32_num_mouse_buttons, w32_use_visible_system_caret): Remove | 1275 | (w32_num_mouse_buttons, w32_use_visible_system_caret): |
| 1038 | declaration. | 1276 | Remove declaration. |
| 1039 | * w32console.c (syms_of_ntterm): Update. | 1277 | * w32console.c (syms_of_ntterm): Update. |
| 1040 | (w32_use_full_screen_buffer): Remove. | 1278 | (w32_use_full_screen_buffer): Remove. |
| 1041 | (Vtty_defined_color_alist): Remove declaration. | 1279 | (Vtty_defined_color_alist): Remove declaration. |