emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] master 8ea5992: * src/fns.c (syms_of_fns): Leave `features


From: Stefan Monnier
Subject: [Emacs-diffs] master 8ea5992: * src/fns.c (syms_of_fns): Leave `features' lexically scoped
Date: Tue, 12 Jul 2016 01:33:46 +0000 (UTC)

branch: master
commit 8ea599254784e3e6da37ec7ea73f1f6ec6a92ff1
Author: Stefan Monnier <address@hidden>
Commit: Stefan Monnier <address@hidden>

    * src/fns.c (syms_of_fns): Leave `features' lexically scoped
---
 src/fns.c |    3 +++
 1 file changed, 3 insertions(+)

diff --git a/src/fns.c b/src/fns.c
index 270dfb4..c318608 100644
--- a/src/fns.c
+++ b/src/fns.c
@@ -5147,6 +5147,9 @@ syms_of_fns (void)
     doc: /* A list of symbols which are the features of the executing Emacs.
 Used by `featurep' and `require', and altered by `provide'.  */);
   Vfeatures = list1 (Qemacs);
+  DEFSYM (Qfeatures, "features");
+  /* Let people use lexically scoped vars named `features'.  */
+  Fmake_var_non_special (Qfeatures);
   DEFSYM (Qsubfeatures, "subfeatures");
   DEFSYM (Qfuncall, "funcall");
 



reply via email to

[Prev in Thread] Current Thread [Next in Thread]