aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman2005-12-26 04:45:11 +0000
committerRichard M. Stallman2005-12-26 04:45:11 +0000
commit989e66e151405f93cef69e59462b44f469fc6005 (patch)
tree698ba3cd4e46d3930a39ab32f650365f6713ecbf /src
parentd52c26e925297a2d1663e2293d46ce95e91c4689 (diff)
downloademacs-989e66e151405f93cef69e59462b44f469fc6005.tar.gz
emacs-989e66e151405f93cef69e59462b44f469fc6005.zip
(Fprovide): Store (0 . OFEATURES) in Vautoload_queue.
Diffstat (limited to 'src')
-rw-r--r--src/fns.c3
1 files changed, 2 insertions, 1 deletions
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. */)
3514 CHECK_SYMBOL (feature); 3514 CHECK_SYMBOL (feature);
3515 CHECK_LIST (subfeatures); 3515 CHECK_LIST (subfeatures);
3516 if (!NILP (Vautoload_queue)) 3516 if (!NILP (Vautoload_queue))
3517 Vautoload_queue = Fcons (Fcons (Vfeatures, Qnil), Vautoload_queue); 3517 Vautoload_queue = Fcons (Fcons (make_number (0), Vfeatures),
3518 Vautoload_queue);
3518 tem = Fmemq (feature, Vfeatures); 3519 tem = Fmemq (feature, Vfeatures);
3519 if (NILP (tem)) 3520 if (NILP (tem))
3520 Vfeatures = Fcons (feature, Vfeatures); 3521 Vfeatures = Fcons (feature, Vfeatures);