diff options
author | Andrea Corallo <akrl@sdf.org> | 2020-03-18 19:48:50 +0000 |
---|---|---|
committer | Andrea Corallo <akrl@sdf.org> | 2020-03-19 13:50:25 +0000 |
commit | b53fc68535211a59fde7200713340d911b48ecec (patch) | |
tree | c3ff45482ff24c0a8e7c38cb68ee29e2c37cc15c /src/lread.c | |
parent | 034d9b319c2d596d090364476a193fbc409026d6 (diff) | |
download | emacs-b53fc68535211a59fde7200713340d911b48ecec.tar.gz emacs-b53fc68535211a59fde7200713340d911b48ecec.tar.bz2 emacs-b53fc68535211a59fde7200713340d911b48ecec.zip |
Extend low level code for late load
Diffstat (limited to 'src/lread.c')
-rw-r--r-- | src/lread.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lread.c b/src/lread.c index 2d90bccdc07..b2f437130ce 100644 --- a/src/lread.c +++ b/src/lread.c @@ -1483,7 +1483,7 @@ Return t if the file exists and loads successfully. */) { specbind (Qcurrent_load_list, Qnil); LOADHIST_ATTACH (found); - Fnative_elisp_load (found); + Fnative_elisp_load (found, Qnil); build_load_history (found, true); } else |