diff options
| author | Paul Eggert | 2011-06-21 23:16:16 -0700 |
|---|---|---|
| committer | Paul Eggert | 2011-06-21 23:16:16 -0700 |
| commit | 0766b489e1b34964bb43db221fe967d54ac5ec5e (patch) | |
| tree | 1de7cf403512dcf52d8d14dd3f05cc8065b8ad4a /src/ChangeLog | |
| parent | 21514da7b21e248fa5046ab27834fa431a34204c (diff) | |
| download | emacs-0766b489e1b34964bb43db221fe967d54ac5ec5e.tar.gz emacs-0766b489e1b34964bb43db221fe967d54ac5ec5e.zip | |
* dispextern.h (struct face.stipple):
* image.c (x_bitmap_height, x_bitmap_width, x_bitmap_pixmap)
(x_bitmap_mask, x_allocate_bitmap_record)
(x_create_bitmap_from_data, x_create_bitmap_from_file)
(x_destroy_bitmap, x_destroy_all_bitmaps, x_create_bitmap_mask)
(x_create_bitmap_from_xpm_data):
* nsterm.h (struct ns_display_info.bitmaps_size, .bitmaps_last):
* w32term.h (struct w32_display_info.icon_bitmap_id, .bitmaps_size)
(.bitmaps_last):
* xfaces.c (load_pixmap):
* xterm.c (x_bitmap_icon, x_wm_set_icon_pixmap):
* xterm.h (struct x_display_info.icon_bitmap_id, .bitmaps_size)
(.bitmaps_last, struct x_output.icon_bitmap):
Use ptrdiff_t, not int, for bitmap indexes.
(x_allocate_bitmap_record): Check for size overflow.
* dispextern.h, lisp.h: Adjust to API changes elsewhere.
Diffstat (limited to 'src/ChangeLog')
| -rw-r--r-- | src/ChangeLog | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 12439754e7c..72f6b437af2 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,22 @@ | |||
| 1 | 2011-06-22 Paul Eggert <eggert@cs.ucla.edu> | ||
| 2 | |||
| 3 | * dispextern.h (struct face.stipple): | ||
| 4 | * image.c (x_bitmap_height, x_bitmap_width, x_bitmap_pixmap) | ||
| 5 | (x_bitmap_mask, x_allocate_bitmap_record) | ||
| 6 | (x_create_bitmap_from_data, x_create_bitmap_from_file) | ||
| 7 | (x_destroy_bitmap, x_destroy_all_bitmaps, x_create_bitmap_mask) | ||
| 8 | (x_create_bitmap_from_xpm_data): | ||
| 9 | * nsterm.h (struct ns_display_info.bitmaps_size, .bitmaps_last): | ||
| 10 | * w32term.h (struct w32_display_info.icon_bitmap_id, .bitmaps_size) | ||
| 11 | (.bitmaps_last): | ||
| 12 | * xfaces.c (load_pixmap): | ||
| 13 | * xterm.c (x_bitmap_icon, x_wm_set_icon_pixmap): | ||
| 14 | * xterm.h (struct x_display_info.icon_bitmap_id, .bitmaps_size) | ||
| 15 | (.bitmaps_last, struct x_output.icon_bitmap): | ||
| 16 | Use ptrdiff_t, not int, for bitmap indexes. | ||
| 17 | (x_allocate_bitmap_record): Check for size overflow. | ||
| 18 | * dispextern.h, lisp.h: Adjust to API changes elsewhere. | ||
| 19 | |||
| 1 | 2011-06-21 Paul Eggert <eggert@cs.ucla.edu> | 20 | 2011-06-21 Paul Eggert <eggert@cs.ucla.edu> |
| 2 | 21 | ||
| 3 | Use ptrdiff_t, not int, for overlay counts. | 22 | Use ptrdiff_t, not int, for overlay counts. |