From: Paul Eggert Date: Wed, 2 Mar 2016 22:16:08 +0000 (-0800) Subject: * src/emacs-module.c (CHECK_USER_PTR): Fix typo in previous change. X-Git-Tag: emacs-26.0.90~2402 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=58400688640a841ba50ad4a48bfaea4d7862ad08;p=emacs.git * src/emacs-module.c (CHECK_USER_PTR): Fix typo in previous change. --- diff --git a/src/emacs-module.c b/src/emacs-module.c index 1176ca309f9..1fec6d10a99 100644 --- a/src/emacs-module.c +++ b/src/emacs-module.c @@ -244,7 +244,7 @@ struct module_fun_env static void CHECK_USER_PTR (Lisp_Object obj) { - CHECK_TYPE (USER_PTRP (obj), Quser_ptrp, lisp); + CHECK_TYPE (USER_PTRP (obj), Quser_ptrp, obj); } /* Catch signals and throws only if the code can actually signal or