diff options
author | Richard M. Stallman <rms@gnu.org> | 1997-05-29 06:33:12 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1997-05-29 06:33:12 +0000 |
commit | f01a9c5bc5f182427446d247a632a559ff53bdbb (patch) | |
tree | 9796bb67237e140ff87d27dc00654ee8a98f2a49 /src/eval.c | |
parent | e76b547b88446ac5581122f3b2a681cc62fab3ba (diff) | |
download | emacs-f01a9c5bc5f182427446d247a632a559ff53bdbb.tar.gz |
(Fsignal): Use call2 to call Vsignal_hook_function.
Diffstat (limited to 'src/eval.c')
-rw-r--r-- | src/eval.c | 2 |
1 files changed, 1 insertions, 1 deletions
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); |