]> git.eshelyaron.com Git - emacs.git/commitdiff
* src/keyboard.c (safe_run_hook_funcall): Fix thinko
authorStefan Monnier <monnier@iro.umontreal.ca>
Thu, 8 Sep 2022 20:15:04 +0000 (16:15 -0400)
committerStefan Monnier <monnier@iro.umontreal.ca>
Thu, 8 Sep 2022 20:15:04 +0000 (16:15 -0400)
src/keyboard.c

index f562b71d3179c91044360855b63908d976ce3434..ca51c80da04616e1efb5452f56e2ec1060df8670 100644 (file)
@@ -1892,7 +1892,7 @@ safe_run_hook_funcall (ptrdiff_t nargs, Lisp_Object *args)
   Lisp_Object *newargs;
   SAFE_ALLOCA_LISP (newargs, nargs);
   newargs[0] = hook, newargs[1] = fun;
-  memcpy (args + 2, newargs + 2, (nargs - 2) * word_size);
+  memcpy (newargs + 2, args + 2, (nargs - 2) * word_size);
   internal_condition_case_n (safe_run_hooks_1, nargs, newargs,
                              Qt, safe_run_hooks_error);
   SAFE_FREE ();