diff options
| author | Kim F. Storm | 2004-03-29 11:45:11 +0000 |
|---|---|---|
| committer | Kim F. Storm | 2004-03-29 11:45:11 +0000 |
| commit | f817f028ec2e5b8f8754025c9644f2f5c709d93c (patch) | |
| tree | 286b6eae265f7c38f72f955d17da71fc791494b1 /src | |
| parent | 1cd0066c730e497fd6285e13c7df6c506e23d6aa (diff) | |
| download | emacs-f817f028ec2e5b8f8754025c9644f2f5c709d93c.tar.gz emacs-f817f028ec2e5b8f8754025c9644f2f5c709d93c.zip | |
(Fcall_interactively): Fix last change.
From David Ponce <david@dponce.com>
Diffstat (limited to 'src')
| -rw-r--r-- | src/callint.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/callint.c b/src/callint.c index a7933bb14d5..1d7d6f9f89f 100644 --- a/src/callint.c +++ b/src/callint.c | |||
| @@ -351,7 +351,7 @@ supply if the command inquires which events were used to invoke it. */) | |||
| 351 | { | 351 | { |
| 352 | Lisp_Object form; | 352 | Lisp_Object form; |
| 353 | GCPRO2 (function, prefix_arg); | 353 | GCPRO2 (function, prefix_arg); |
| 354 | Finteractive_form (function); | 354 | form = Finteractive_form (function); |
| 355 | UNGCPRO; | 355 | UNGCPRO; |
| 356 | if (CONSP (form)) | 356 | if (CONSP (form)) |
| 357 | specs = filter_specs = Fcar (XCDR (form)); | 357 | specs = filter_specs = Fcar (XCDR (form)); |