diff options
| author | Daniel Colascione | 2014-04-03 00:14:02 -0700 |
|---|---|---|
| committer | Daniel Colascione | 2014-04-03 00:14:02 -0700 |
| commit | 705cf384bec23354ad22a5c48d3430a96ef70ca1 (patch) | |
| tree | 1615876bc7abad32f5e41ea34c5cd1747466798a /src/ChangeLog | |
| parent | 3a9e7a49deea49088a773c321e52185e922748d6 (diff) | |
| download | emacs-705cf384bec23354ad22a5c48d3430a96ef70ca1.tar.gz emacs-705cf384bec23354ad22a5c48d3430a96ef70ca1.zip | |
Clean up array size calculations
Diffstat (limited to 'src/ChangeLog')
| -rw-r--r-- | src/ChangeLog | 61 |
1 files changed, 61 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 72449dc52af..a628148bbda 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,5 +1,66 @@ | |||
| 1 | 2014-04-03 Daniel Colascione <dancol@dancol.org> | 1 | 2014-04-03 Daniel Colascione <dancol@dancol.org> |
| 2 | 2 | ||
| 3 | In all places below, change expressions of the form sizeof(arr) / | ||
| 4 | sizeof(arr[0]) to EARRAYSIZE(arr). | ||
| 5 | |||
| 6 | * xterm.c (x_term_init): See above. | ||
| 7 | |||
| 8 | * xfns.c (best_xim_style): See above. | ||
| 9 | |||
| 10 | * xfaces.c (Fdump_colors): See above. | ||
| 11 | |||
| 12 | * w32fns.c (w32_default_color_map): See above. | ||
| 13 | |||
| 14 | * w32.c: | ||
| 15 | (init_environment): See above. | ||
| 16 | (N_ENV_VARS): See above. | ||
| 17 | |||
| 18 | * unexcw.c (read_exe_header): See above. | ||
| 19 | |||
| 20 | * term.c (term_get_fkeys_1): See above. | ||
| 21 | |||
| 22 | * sysdep.c (init_baud_rate): See above. | ||
| 23 | |||
| 24 | * nsterm.m (ns_convert_key): See above. | ||
| 25 | |||
| 26 | * nsfns.m (get_geometry_from_preferences): See above. | ||
| 27 | |||
| 28 | * msdos.c (dos_set_window_size): See above. | ||
| 29 | (init_environment): See above. | ||
| 30 | |||
| 31 | * macfont.m (mac_font_get_glyph_for_cid): See above. | ||
| 32 | (macfont_store_descriptor_attributes): See above. | ||
| 33 | (macfont_create_attributes_with_spec): See above. | ||
| 34 | (mac_ctfont_get_glyph_for_cid): See above. | ||
| 35 | |||
| 36 | * keyboard.c (command_loop_1): See above. | ||
| 37 | (read_menu_command): See above. | ||
| 38 | (make_lispy_event): See above. | ||
| 39 | (NUM_MOD_NAMES): See above. | ||
| 40 | (read_key_sequence_vs): See above. | ||
| 41 | (Fcurrent_input_mode): See above. | ||
| 42 | (syms_of_keyboard): See above. | ||
| 43 | |||
| 44 | * image.c (xpm_str_to_color_key): See above. | ||
| 45 | |||
| 46 | * fringe.c (MAX_STANDARD_FRINGE_BITMAPS): See above. | ||
| 47 | |||
| 48 | * frame.c (x_set_frame_parameters): See above. | ||
| 49 | |||
| 50 | * fileio.c (Ffile_selinux_context): See above. | ||
| 51 | |||
| 52 | * emacs.c (sort_args): See above. | ||
| 53 | |||
| 54 | * dosfns.c (): | ||
| 55 | (msdos_stdcolor_name): See above. | ||
| 56 | |||
| 57 | * dired.c (file_attributes): See above. | ||
| 58 | |||
| 59 | * chartab.c: | ||
| 60 | (uniprop_decoder_count,uniprop_encode_count): See above. | ||
| 61 | |||
| 62 | 2014-04-02 Daniel Colascione <dancol@dancol.org> | ||
| 63 | |||
| 3 | * data.c (Ffset): Abort if we're trying to set a function call to | 64 | * data.c (Ffset): Abort if we're trying to set a function call to |
| 4 | a dead lisp object. | 65 | a dead lisp object. |
| 5 | 66 | ||