From 58400688640a841ba50ad4a48bfaea4d7862ad08 Mon Sep 17 00:00:00 2001 From: Paul Eggert Date: Wed, 2 Mar 2016 14:16:08 -0800 Subject: [PATCH] * src/emacs-module.c (CHECK_USER_PTR): Fix typo in previous change. --- src/emacs-module.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.39.2