+2001-05-30 Stefan Monnier <monnier@cs.yale.edu>
+
+ * buffer.c (copy_overlays): Make ENABLE_CHECKING happy.
+
2001-05-30 Gerd Moellmann <gerd@gnu.org>
* xfns.c (enum image_value_type): New enumerator
2001-05-28 Gerd Moellmann <gerd@gnu.org>
- * xmenu.c (xmenu_show) [!HAVE_MULTILINGUAL_MENU]: Don't overwrite
+ * xmenu.c (xmenu_show) [!HAVE_MULTILINGUAL_MENU]: Don't overwrite
an item's name with its key description in case the description
is a multibyte string.
* xfns.c (x_set_foreground_color): Change frame's cursor_pixel
only if it's equal to the former foreground pixel color.
- (x_set_foreground_color, x_set_background_color)
+ (x_set_foreground_color, x_set_background_color)
(x_set_mouse_color, x_set_cursor_color): Cleaned up.
2001-05-16 Dave Love <fx@gnu.org>
old_overlay = XCAR (list);
charpos = marker_position (OVERLAY_START (old_overlay));
start = Fmake_marker ();
- Fset_marker (start, charpos, buffer);
+ Fset_marker (start, make_number (charpos), buffer);
XMARKER (start)->insertion_type
= XMARKER (OVERLAY_START (old_overlay))->insertion_type;
charpos = marker_position (OVERLAY_END (old_overlay));
end = Fmake_marker ();
- Fset_marker (end, charpos, buffer);
+ Fset_marker (end, make_number (charpos), buffer);
XMARKER (end)->insertion_type
= XMARKER (OVERLAY_END (old_overlay))->insertion_type;