buffer with byte-size of source buffer.
+2008-04-03 Stefan Monnier <monnier@iro.umontreal.ca>
+
+ * insdel.c (insert_from_buffer_1): Don't compare bytes in destination
+ buffer with byte-size of source buffer.
+
2008-04-03 Chong Yidong <cyd@stupidchicken.com>
* callint.c (Fcall_interactively): Handle temporary region even
/* Get the intervals for the part of the string we are inserting. */
intervals = BUF_INTERVALS (buf);
- if (outgoing_nbytes < BUF_Z_BYTE (buf) - BUF_BEG_BYTE (buf))
+ if (nchars < BUF_Z (buf) - BUF_BEG (buf))
{
if (buf == current_buffer && PT <= from)
from += nchars;