From: Richard M. Stallman Date: Thu, 29 May 1997 06:33:12 +0000 (+0000) Subject: (Fsignal): Use call2 to call Vsignal_hook_function. X-Git-Tag: emacs-20.1~1928 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=f01a9c5bc5f182427446d247a632a559ff53bdbb;p=emacs.git (Fsignal): Use call2 to call Vsignal_hook_function. --- diff --git a/src/eval.c b/src/eval.c index 50b88793004..dcbfada26db 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);