From 989e66e151405f93cef69e59462b44f469fc6005 Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Mon, 26 Dec 2005 04:45:11 +0000 Subject: [PATCH] (Fprovide): Store (0 . OFEATURES) in Vautoload_queue. --- src/fns.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/fns.c b/src/fns.c index 6ed5051ee78..73feac6d229 100644 --- 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); -- 2.39.5