ChangeLog fix

Related entries do not get separated by blank lines (per standards.info).
Use form from admin/notes/changelogs for repeated items.
This commit is contained in:
Glenn Morris 2014-04-05 11:40:52 -07:00
parent ba8b8451d5
commit 1b058e4252

View file

@ -1,63 +1,32 @@
2014-04-03 Daniel Colascione <dancol@dancol.org>
In all places below, change expressions of the form sizeof(arr) /
sizeof(arr[0]) to ARRAYELTS(arr).
* xterm.c (x_term_init): See above.
* xfns.c (best_xim_style): See above.
* xfaces.c (Fdump_colors): See above.
* w32fns.c (w32_default_color_map): See above.
* w32.c:
(init_environment): See above.
(N_ENV_VARS): See above.
* unexcw.c (read_exe_header): See above.
* term.c (term_get_fkeys_1): See above.
* sysdep.c (init_baud_rate): See above.
* nsterm.m (ns_convert_key): See above.
* nsfns.m (get_geometry_from_preferences): See above.
* msdos.c (dos_set_window_size): See above.
(init_environment): See above.
* macfont.m (mac_font_get_glyph_for_cid): See above.
(macfont_store_descriptor_attributes): See above.
(macfont_create_attributes_with_spec): See above.
(mac_ctfont_get_glyph_for_cid): See above.
* keyboard.c (command_loop_1): See above.
(read_menu_command): See above.
(make_lispy_event): See above.
(NUM_MOD_NAMES): See above.
(read_key_sequence_vs): See above.
(Fcurrent_input_mode): See above.
(syms_of_keyboard): See above.
* image.c (xpm_str_to_color_key): See above.
* fringe.c (MAX_STANDARD_FRINGE_BITMAPS): See above.
* frame.c (x_set_frame_parameters): See above.
* fileio.c (Ffile_selinux_context): See above.
* emacs.c (sort_args): See above.
* dosfns.c ():
(msdos_stdcolor_name): See above.
* dired.c (file_attributes): See above.
* chartab.c:
(uniprop_decoder_count,uniprop_encode_count): See above.
* xterm.c (x_term_init):
* xfns.c (best_xim_style):
* xfaces.c (Fdump_colors):
* w32fns.c (w32_default_color_map):
* w32.c (init_environment, N_ENV_VARS):
* unexcw.c (read_exe_header):
* term.c (term_get_fkeys_1):
* sysdep.c (init_baud_rate):
* nsterm.m (ns_convert_key):
* nsfns.m (get_geometry_from_preferences):
* msdos.c (dos_set_window_size, init_environment):
* macfont.m (mac_font_get_glyph_for_cid)
(macfont_store_descriptor_attributes)
(macfont_create_attributes_with_spec, mac_ctfont_get_glyph_for_cid):
* keyboard.c (command_loop_1, read_menu_command, make_lispy_event)
(NUM_MOD_NAMES, read_key_sequence_vs, Fcurrent_input_mode)
(syms_of_keyboard):
* image.c (xpm_str_to_color_key):
* fringe.c (MAX_STANDARD_FRINGE_BITMAPS):
* frame.c (x_set_frame_parameters):
* fileio.c (Ffile_selinux_context):
* emacs.c (sort_args):
* dosfns.c (msdos_stdcolor_name):
* dired.c (file_attributes):
* chartab.c (uniprop_decoder_count, uniprop_encode_count):
Change expressions of the form sizeof(arr) / sizeof(arr[0])
to ARRAYELTS(arr).
2014-04-02 Daniel Colascione <dancol@dancol.org>