diff options
| author | Richard M. Stallman | 1997-08-09 03:06:55 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1997-08-09 03:06:55 +0000 |
| commit | 4aac23023438a7554cf40b109e2cc475feefc73f (patch) | |
| tree | 261338496f72a623e98dd630dfafd64ccb62639e /src | |
| parent | 8c01292981556acd1daa1c5fc706b625333ff861 (diff) | |
| download | emacs-4aac23023438a7554cf40b109e2cc475feefc73f.tar.gz emacs-4aac23023438a7554cf40b109e2cc475feefc73f.zip | |
(do_autoload): Require a suffix for the file.
Diffstat (limited to 'src')
| -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 1f2d639419f..36fab7226b7 100644 --- a/src/eval.c +++ b/src/eval.c | |||
| @@ -1632,7 +1632,7 @@ do_autoload (fundef, funname) | |||
| 1632 | /* Value saved here is to be restored into Vautoload_queue */ | 1632 | /* Value saved here is to be restored into Vautoload_queue */ |
| 1633 | record_unwind_protect (un_autoload, Vautoload_queue); | 1633 | record_unwind_protect (un_autoload, Vautoload_queue); |
| 1634 | Vautoload_queue = Qt; | 1634 | Vautoload_queue = Qt; |
| 1635 | Fload (Fcar (Fcdr (fundef)), Qnil, noninteractive ? Qt : Qnil, Qnil, Qnil); | 1635 | Fload (Fcar (Fcdr (fundef)), Qnil, noninteractive ? Qt : Qnil, Qnil, Qt); |
| 1636 | 1636 | ||
| 1637 | /* Save the old autoloads, in case we ever do an unload. */ | 1637 | /* Save the old autoloads, in case we ever do an unload. */ |
| 1638 | queue = Vautoload_queue; | 1638 | queue = Vautoload_queue; |