aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman2005-08-07 17:36:12 +0000
committerRichard M. Stallman2005-08-07 17:36:12 +0000
commit780a7814436dd62e3a1e8a888fde43fb899dcfdc (patch)
tree0bf12758301e9b53df093247904ee116fad9d76d /src
parent3ae9c96ab9b35ea93589911c350af1d353bafd20 (diff)
downloademacs-780a7814436dd62e3a1e8a888fde43fb899dcfdc.tar.gz
emacs-780a7814436dd62e3a1e8a888fde43fb899dcfdc.zip
(syms_of_fns): Add `emacs' to features.
Diffstat (limited to 'src')
-rw-r--r--src/fns.c2
1 files changed, 1 insertions, 1 deletions
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 ()
5833 DEFVAR_LISP ("features", &Vfeatures, 5833 DEFVAR_LISP ("features", &Vfeatures,
5834 doc: /* A list of symbols which are the features of the executing emacs. 5834 doc: /* A list of symbols which are the features of the executing emacs.
5835Used by `featurep' and `require', and altered by `provide'. */); 5835Used by `featurep' and `require', and altered by `provide'. */);
5836 Vfeatures = Qnil; 5836 Vfeatures = Fcons (intern ("emacs"), Qnil);
5837 Qsubfeatures = intern ("subfeatures"); 5837 Qsubfeatures = intern ("subfeatures");
5838 staticpro (&Qsubfeatures); 5838 staticpro (&Qsubfeatures);
5839 5839