changeset 15122:a46a40f1c30c

(add_overlay_mod_hooklist): Fix call to bcopy.
author Richard M. Stallman <rms@gnu.org>
date Wed, 01 May 1996 21:20:05 +0000
parents b1a3fef3d648
children d6106d651a71
files src/buffer.c
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/src/buffer.c	Wed May 01 20:13:22 1996 +0000
+++ b/src/buffer.c	Wed May 01 21:20:05 1996 +0000
@@ -3044,8 +3044,8 @@
       old = last_overlay_modification_hooks;
       last_overlay_modification_hooks
 	= Fmake_vector (make_number (oldsize * 2), Qnil);
-      bcopy (XVECTOR (last_overlay_modification_hooks)->contents,
-	     XVECTOR (old)->contents,
+      bcopy (XVECTOR (old)->contents,
+	     XVECTOR (last_overlay_modification_hooks)->contents,
 	     sizeof (Lisp_Object) * oldsize);
     }
   XVECTOR (last_overlay_modification_hooks)->contents[last_overlay_modification_hooks_used++] = functionlist;