From f01a9c5bc5f182427446d247a632a559ff53bdbb Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Thu, 29 May 1997 06:33:12 +0000 Subject: [PATCH] (Fsignal): Use call2 to call Vsignal_hook_function. --- src/eval.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/eval.c b/src/eval.c index 50b8879300..dcbfada26d 100644 --- a/src/eval.c +++ b/src/eval.c @@ -1223,7 +1223,7 @@ See also the function `condition-case'.") /* This hook is used by edebug. */ if (! NILP (Vsignal_hook_function)) - Ffuncall (Vsignal_hook_function, error_symbol, data); + call2 (Vsignal_hook_function, error_symbol, data); conditions = Fget (error_symbol, Qerror_conditions); -- 2.20.1