aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJuanma Barranquero2006-11-05 04:07:58 +0000
committerJuanma Barranquero2006-11-05 04:07:58 +0000
commit4774b68e4930ffb9a553bf95099fb703ad083640 (patch)
tree1169cc4ccf8efc1355320850f75495cb91fe871c /src
parentcd53fb508526a8d6bce26e662037815cfeede857 (diff)
downloademacs-4774b68e4930ffb9a553bf95099fb703ad083640.tar.gz
emacs-4774b68e4930ffb9a553bf95099fb703ad083640.zip
(Ffeaturep, syms_of_fns): Fix typos in docstrings.
Diffstat (limited to 'src')
-rw-r--r--src/fns.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/fns.c b/src/fns.c
index ff945720f4f..98e808d4506 100644
--- a/src/fns.c
+++ b/src/fns.c
@@ -3461,7 +3461,7 @@ DEFUN ("featurep", Ffeaturep, Sfeaturep, 1, 2, 0,
3461 doc: /* Returns t if FEATURE is present in this Emacs. 3461 doc: /* Returns t if FEATURE is present in this Emacs.
3462 3462
3463Use this to conditionalize execution of lisp code based on the 3463Use this to conditionalize execution of lisp code based on the
3464presence or absence of emacs or environment extensions. 3464presence or absence of Emacs or environment extensions.
3465Use `provide' to declare that a feature is available. This function 3465Use `provide' to declare that a feature is available. This function
3466looks at the value of the variable `features'. The optional argument 3466looks at the value of the variable `features'. The optional argument
3467SUBFEATURE can be used to check a specific subfeature of FEATURE. */) 3467SUBFEATURE can be used to check a specific subfeature of FEATURE. */)
@@ -5803,7 +5803,7 @@ syms_of_fns ()
5803 Fset (Qyes_or_no_p_history, Qnil); 5803 Fset (Qyes_or_no_p_history, Qnil);
5804 5804
5805 DEFVAR_LISP ("features", &Vfeatures, 5805 DEFVAR_LISP ("features", &Vfeatures,
5806 doc: /* A list of symbols which are the features of the executing emacs. 5806 doc: /* A list of symbols which are the features of the executing Emacs.
5807Used by `featurep' and `require', and altered by `provide'. */); 5807Used by `featurep' and `require', and altered by `provide'. */);
5808 Vfeatures = Fcons (intern ("emacs"), Qnil); 5808 Vfeatures = Fcons (intern ("emacs"), Qnil);
5809 Qsubfeatures = intern ("subfeatures"); 5809 Qsubfeatures = intern ("subfeatures");