aboutsummaryrefslogtreecommitdiffstats
path: root/src/fns.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/fns.c')
-rw-r--r--src/fns.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/fns.c b/src/fns.c
index efca68318e4..7a4498ce211 100644
--- a/src/fns.c
+++ b/src/fns.c
@@ -1,6 +1,7 @@
1/* Random utility Lisp functions. 1/* Random utility Lisp functions.
2 Copyright (C) 1985, 1986, 1987, 1993, 1994, 1995, 1997, 1998, 1999, 2000, 2 Copyright (C) 1985, 1986, 1987, 1993, 1994, 1995, 1997,
3 2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc. 3 1998, 1999, 2000, 2001, 2002, 2003, 2004,
4 2005 Free Software Foundation, Inc.
4 5
5This file is part of GNU Emacs. 6This file is part of GNU Emacs.
6 7
@@ -5190,7 +5191,7 @@ syms_of_fns ()
5190 DEFVAR_LISP ("features", &Vfeatures, 5191 DEFVAR_LISP ("features", &Vfeatures,
5191 doc: /* A list of symbols which are the features of the executing emacs. 5192 doc: /* A list of symbols which are the features of the executing emacs.
5192Used by `featurep' and `require', and altered by `provide'. */); 5193Used by `featurep' and `require', and altered by `provide'. */);
5193 Vfeatures = Qnil; 5194 Vfeatures = Fcons (intern ("emacs"), Qnil);
5194 Qsubfeatures = intern ("subfeatures"); 5195 Qsubfeatures = intern ("subfeatures");
5195 staticpro (&Qsubfeatures); 5196 staticpro (&Qsubfeatures);
5196 5197