+2010-07-23 Andreas Schwab <schwab@linux-m68k.org>
+
+ * eval.c (funcall_funvec): Replace bcopy by memcpy.
+
2010-06-18 Stefan Monnier <monnier@iro.umontreal.ca>
* eval.c (Fspecial_variable_p): Rename from `specialp'.
funcall_args[0] = curry_params[0];
/* Then the arguments in the appropriate order. */
- bcopy (curried_args, funcall_args + curried_args_offs,
- num_curried_args * sizeof (Lisp_Object));
- bcopy (args, funcall_args + user_args_offs,
- nargs * sizeof (Lisp_Object));
+ memcpy (funcall_args + curried_args_offs, curried_args,
+ num_curried_args * sizeof (Lisp_Object));
+ memcpy (funcall_args + user_args_offs, args,
+ nargs * sizeof (Lisp_Object));
return Ffuncall (num_funcall_args, funcall_args);
}