From 780a7814436dd62e3a1e8a888fde43fb899dcfdc Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Sun, 7 Aug 2005 17:36:12 +0000 Subject: [PATCH] (syms_of_fns): Add `emacs' to features. --- src/fns.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/fns.c b/src/fns.c index 60a98fd5709..1e26ec9a392 100644 --- a/src/fns.c +++ b/src/fns.c @@ -5833,7 +5833,7 @@ syms_of_fns () DEFVAR_LISP ("features", &Vfeatures, doc: /* A list of symbols which are the features of the executing emacs. Used by `featurep' and `require', and altered by `provide'. */); - Vfeatures = Qnil; + Vfeatures = Fcons (intern ("emacs"), Qnil); Qsubfeatures = intern ("subfeatures"); staticpro (&Qsubfeatures); -- 2.39.5