diff options
| author | Paul Eggert | 2012-09-24 14:38:23 -0700 |
|---|---|---|
| committer | Paul Eggert | 2012-09-24 14:38:23 -0700 |
| commit | 578098f346bf9e1f23ca86ed764fc00b035b427f (patch) | |
| tree | 19d59f89e4a3dfcab6b7a054d6d8522ca686fe06 /src/ChangeLog | |
| parent | 9a48e1689182ec87974c04429ca82f5015d6f5e2 (diff) | |
| download | emacs-578098f346bf9e1f23ca86ed764fc00b035b427f.tar.gz emacs-578098f346bf9e1f23ca86ed764fc00b035b427f.zip | |
image.c, indent.c: Use bool for booleans.
* dispextern.h (struct image_type): Members valid_p, load, init
now return bool, not int. All uses changed.
* image.c: Omit unnecessary static decls.
(x_create_bitmap_mask, x_build_heuristic_mask):
Return void, not int, since callers don't care about the return value.
(x_create_bitmap_mask, define_image_type, valid_image_p)
(struct image_keyword, parse_image_spec, image_spec_value)
(check_image_size, image_background)
(image_background_transparent, x_clear_image_1)
(postprocess_image, lookup_image, x_check_image_size)
(x_create_x_image_and_pixmap, xbm_image_p)
(Create_Pixmap_From_Bitmap_Data, xbm_read_bitmap_data)
(xbm_load_image, xbm_file_p, xbm_load, xpm_lookup_color)
(init_xpm_functions, xpm_valid_color_symbols_p, xpm_image_p)
(xpm_load, xpm_load_image, lookup_rgb_color, lookup_pixel_color)
(x_to_xcolors, x_build_heuristic_mask, pbm_image_p, pbm_load)
(png_image_p, init_png_functions, png_load_body, png_load)
(jpeg_image_p, init_jpeg_functions, jpeg_load_body, jpeg_load)
(tiff_image_p, init_tiff_functions, tiff_load, gif_image_p)
(init_gif_functions, gif_load, imagemagick_image_p)
(imagemagick_load_image, imagemagick_load, svg_image_p)
(init_svg_functions, svg_load, svg_load_image, gs_image_p)
(gs_load):
* nsimage.m (ns_load_image):
* nsterm.m (ns_defined_color):
* xfaces.c (tty_lookup_color, tty_defined_color, defined_color):
* xfns.c (x_defined_color):
* xterm.c (x_alloc_lighter_color_for_widget)
(x_alloc_nearest_color_1, x_alloc_nearest_color)
(x_alloc_lighter_color):
* indent.c (disptab_matches_widthtab, current_column)
(scan_for_column, string_display_width, indented_beyond_p)
(compute_motion, vmotion, Fvertical_motion):
Use bool for booleans.
Diffstat (limited to 'src/ChangeLog')
| -rw-r--r-- | src/ChangeLog | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 56a9c0a17ce..500411da531 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,41 @@ | |||
| 1 | 2012-09-24 Paul Eggert <eggert@cs.ucla.edu> | ||
| 2 | |||
| 3 | image.c, indent.c: Use bool for booleans. | ||
| 4 | * dispextern.h (struct image_type): Members valid_p, load, init | ||
| 5 | now return bool, not int. All uses changed. | ||
| 6 | * image.c: Omit unnecessary static decls. | ||
| 7 | (x_create_bitmap_mask, x_build_heuristic_mask): | ||
| 8 | Return void, not int, since callers don't care about the return value. | ||
| 9 | (x_create_bitmap_mask, define_image_type, valid_image_p) | ||
| 10 | (struct image_keyword, parse_image_spec, image_spec_value) | ||
| 11 | (check_image_size, image_background) | ||
| 12 | (image_background_transparent, x_clear_image_1) | ||
| 13 | (postprocess_image, lookup_image, x_check_image_size) | ||
| 14 | (x_create_x_image_and_pixmap, xbm_image_p) | ||
| 15 | (Create_Pixmap_From_Bitmap_Data, xbm_read_bitmap_data) | ||
| 16 | (xbm_load_image, xbm_file_p, xbm_load, xpm_lookup_color) | ||
| 17 | (init_xpm_functions, xpm_valid_color_symbols_p, xpm_image_p) | ||
| 18 | (xpm_load, xpm_load_image, lookup_rgb_color, lookup_pixel_color) | ||
| 19 | (x_to_xcolors, x_build_heuristic_mask, pbm_image_p, pbm_load) | ||
| 20 | (png_image_p, init_png_functions, png_load_body, png_load) | ||
| 21 | (jpeg_image_p, init_jpeg_functions, jpeg_load_body, jpeg_load) | ||
| 22 | (tiff_image_p, init_tiff_functions, tiff_load, gif_image_p) | ||
| 23 | (init_gif_functions, gif_load, imagemagick_image_p) | ||
| 24 | (imagemagick_load_image, imagemagick_load, svg_image_p) | ||
| 25 | (init_svg_functions, svg_load, svg_load_image, gs_image_p) | ||
| 26 | (gs_load): | ||
| 27 | * nsimage.m (ns_load_image): | ||
| 28 | * nsterm.m (ns_defined_color): | ||
| 29 | * xfaces.c (tty_lookup_color, tty_defined_color, defined_color): | ||
| 30 | * xfns.c (x_defined_color): | ||
| 31 | * xterm.c (x_alloc_lighter_color_for_widget) | ||
| 32 | (x_alloc_nearest_color_1, x_alloc_nearest_color) | ||
| 33 | (x_alloc_lighter_color): | ||
| 34 | * indent.c (disptab_matches_widthtab, current_column) | ||
| 35 | (scan_for_column, string_display_width, indented_beyond_p) | ||
| 36 | (compute_motion, vmotion, Fvertical_motion): | ||
| 37 | Use bool for booleans. | ||
| 38 | |||
| 1 | 2012-09-24 Chong Yidong <cyd@gnu.org> | 39 | 2012-09-24 Chong Yidong <cyd@gnu.org> |
| 2 | 40 | ||
| 3 | * chartab.c (Fset_char_table_default): Obsolete function removed. | 41 | * chartab.c (Fset_char_table_default): Obsolete function removed. |