]> git.eshelyaron.com Git - emacs.git/commitdiff
(Fload): Don't load with Qload_force_doc_strings t if
authorKenichi Handa <handa@m17n.org>
Thu, 25 Jul 2002 01:30:27 +0000 (01:30 +0000)
committerKenichi Handa <handa@m17n.org>
Thu, 25 Jul 2002 01:30:27 +0000 (01:30 +0000)
version is 0.

src/lread.c

index 3d4a639418589d4f385841c710e1b93168b1374a..7b3b5326e676367b5f93b04ea81db04e155c941e 100644 (file)
@@ -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
     {