]> git.eshelyaron.com Git - emacs.git/commitdiff
(Fprovide): Store (0 . OFEATURES) in Vautoload_queue.
authorRichard M. Stallman <rms@gnu.org>
Mon, 26 Dec 2005 04:45:11 +0000 (04:45 +0000)
committerRichard M. Stallman <rms@gnu.org>
Mon, 26 Dec 2005 04:45:11 +0000 (04:45 +0000)
src/fns.c

index 6ed5051ee78fc9275c9e2b18fddf8e6070388a23..73feac6d2299f1ccf01d604778e6cfaf6faf6461 100644 (file)
--- a/src/fns.c
+++ b/src/fns.c
@@ -3514,7 +3514,8 @@ particular subfeatures supported in this version of FEATURE.  */)
   CHECK_SYMBOL (feature);
   CHECK_LIST (subfeatures);
   if (!NILP (Vautoload_queue))
-    Vautoload_queue = Fcons (Fcons (Vfeatures, Qnil), Vautoload_queue);
+    Vautoload_queue = Fcons (Fcons (make_number (0), Vfeatures),
+                            Vautoload_queue);
   tem = Fmemq (feature, Vfeatures);
   if (NILP (tem))
     Vfeatures = Fcons (feature, Vfeatures);