From: Richard M. Stallman Date: Mon, 26 Dec 2005 04:45:11 +0000 (+0000) Subject: (Fprovide): Store (0 . OFEATURES) in Vautoload_queue. X-Git-Tag: emacs-pretest-22.0.90~5074 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=989e66e151405f93cef69e59462b44f469fc6005;p=emacs.git (Fprovide): Store (0 . OFEATURES) in Vautoload_queue. --- 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);