mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-02-25 06:17:34 +00:00
(Fload): Don't load with Qload_force_doc_strings t if
version is 0.
This commit is contained in:
parent
2503aa19cb
commit
ab2a47e1cc
1 changed files with 1 additions and 1 deletions
|
|
@ -1029,7 +1029,7 @@ Return t if file exists. */)
|
|||
load_descriptor_list
|
||||
= Fcons (make_number (fileno (stream)), load_descriptor_list);
|
||||
load_in_progress++;
|
||||
if (version >= 22)
|
||||
if (! version || version >= 22)
|
||||
readevalloop (Qget_file_char, stream, file, Feval, 0, Qnil, Qnil);
|
||||
else
|
||||
{
|
||||
|
|
|
|||
Loading…
Reference in a new issue