Mercurial > emacs
changeset 18018:2a11f1e4bd6b
(Fsignal): Use call2 to call Vsignal_hook_function.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Thu, 29 May 1997 06:33:12 +0000 |
parents | 4c3a2b58fd72 |
children | b5e19f3496e7 |
files | src/eval.c |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/src/eval.c Thu May 29 06:32:44 1997 +0000 +++ b/src/eval.c Thu May 29 06:33:12 1997 +0000 @@ -1223,7 +1223,7 @@ /* 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);