diff options
author | Richard M. Stallman <rms@gnu.org> | 1997-08-04 03:00:25 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1997-08-04 03:00:25 +0000 |
commit | 76323a073ceabbbca95e5d9b612eccbb81b0df52 (patch) | |
tree | 0fe5f95529335dfeb27a6ea23557510fd38ca21c /src/eval.c | |
parent | f0a50954f3d10d256fb27657afbdb00befda1ebb (diff) | |
download | emacs-76323a073ceabbbca95e5d9b612eccbb81b0df52.tar.gz |
(do_autoload): Pass new arg to Fload.
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 8bf28ab74ea..1f2d639419f 100644 --- a/src/eval.c +++ b/src/eval.c @@ -1632,7 +1632,7 @@ do_autoload (fundef, funname) /* Value saved here is to be restored into Vautoload_queue */ record_unwind_protect (un_autoload, Vautoload_queue); Vautoload_queue = Qt; - Fload (Fcar (Fcdr (fundef)), Qnil, noninteractive ? Qt : Qnil, Qnil); + Fload (Fcar (Fcdr (fundef)), Qnil, noninteractive ? Qt : Qnil, Qnil, Qnil); /* Save the old autoloads, in case we ever do an unload. */ queue = Vautoload_queue; |