src/keyboard.c (adjust_point_for_property): #ifdef-out dodgy xassert
+2004-02-28 Miles Bader <miles@gnu.org>
+
+ * keyboard.c (adjust_point_for_property): #ifdef-out dodgy xassert.
+
2004-02-28 Kim F. Storm <storm@cua.dk>
* keyboard.c (kbd_buffer_store_event_hold): New function to store
: (PT < last_pt ? beg : end));
check_composition = check_display = 1;
}
+#if 0 /* This assertion isn't correct, because SET_PT may end up setting
+ the point to something other than its argument, due to
+ point-motion hooks, intangibility, etc. */
xassert (PT == beg || PT == end);
+#endif
+
/* Pretend the area doesn't exist if the buffer is not
modified. */
if (!modified && !ellipsis && beg < end)