aboutsummaryrefslogtreecommitdiffstats
path: root/src/lread.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/lread.c')
-rw-r--r--src/lread.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lread.c b/src/lread.c
index 4ce6a442c36..4eba8635521 100644
--- a/src/lread.c
+++ b/src/lread.c
@@ -3603,7 +3603,7 @@ substitute_object_recurse (struct subst *subst, Lisp_Object subtree)
3603 return subtree; 3603 return subtree;
3604 3604
3605 /* If we've been to this node before, don't explore it again. */ 3605 /* If we've been to this node before, don't explore it again. */
3606 if (!EQ (Qnil, Fmemq (subtree, subst->seen))) 3606 if (!NILP (Fmemq (subtree, subst->seen)))
3607 return subtree; 3607 return subtree;
3608 3608
3609 /* If this node can be the entry point to a cycle, remember that 3609 /* If this node can be the entry point to a cycle, remember that
@@ -4236,7 +4236,7 @@ usage: (unintern NAME OBARRAY) */)
4236 session if we unintern them, as well as even more ways to use 4236 session if we unintern them, as well as even more ways to use
4237 `setq' or `fset' or whatnot to make the Emacs session 4237 `setq' or `fset' or whatnot to make the Emacs session
4238 unusable. Let's not go down this silly road. --Stef */ 4238 unusable. Let's not go down this silly road. --Stef */
4239 /* if (EQ (tem, Qnil) || EQ (tem, Qt)) 4239 /* if (NILP (tem) || EQ (tem, Qt))
4240 error ("Attempt to unintern t or nil"); */ 4240 error ("Attempt to unintern t or nil"); */
4241 4241
4242 XSYMBOL (tem)->u.s.interned = SYMBOL_UNINTERNED; 4242 XSYMBOL (tem)->u.s.interned = SYMBOL_UNINTERNED;