diff options
| author | Richard M. Stallman | 1997-05-29 06:33:12 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1997-05-29 06:33:12 +0000 |
| commit | f01a9c5bc5f182427446d247a632a559ff53bdbb (patch) | |
| tree | 9796bb67237e140ff87d27dc00654ee8a98f2a49 /src/eval.c | |
| parent | e76b547b88446ac5581122f3b2a681cc62fab3ba (diff) | |
| download | emacs-f01a9c5bc5f182427446d247a632a559ff53bdbb.tar.gz emacs-f01a9c5bc5f182427446d247a632a559ff53bdbb.zip | |
(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'.") | |||
| 1223 | 1223 | ||
| 1224 | /* This hook is used by edebug. */ | 1224 | /* This hook is used by edebug. */ |
| 1225 | if (! NILP (Vsignal_hook_function)) | 1225 | if (! NILP (Vsignal_hook_function)) |
| 1226 | Ffuncall (Vsignal_hook_function, error_symbol, data); | 1226 | call2 (Vsignal_hook_function, error_symbol, data); |
| 1227 | 1227 | ||
| 1228 | conditions = Fget (error_symbol, Qerror_conditions); | 1228 | conditions = Fget (error_symbol, Qerror_conditions); |
| 1229 | 1229 | ||