1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-12-02 08:22:22 +00:00

(Fprovide): Store (0 . OFEATURES) in Vautoload_queue.

This commit is contained in:
Richard M. Stallman 2005-12-26 04:45:11 +00:00
parent d52c26e925
commit 989e66e151

View File

@ -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);