1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-27 15:52:00 -08:00

(do_autoload): Pass new arg to Fload.

This commit is contained in:
Richard M. Stallman 1997-08-04 03:00:25 +00:00
parent f0a50954f3
commit 76323a073c

View file

@ -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;