]> git.eshelyaron.com Git - emacs.git/commitdiff
Remove unnecessary assertion
authorAndrea Corallo <akrl@sdf.org>
Fri, 8 May 2020 19:05:52 +0000 (20:05 +0100)
committerAndrea Corallo <akrl@sdf.org>
Fri, 8 May 2020 19:05:52 +0000 (20:05 +0100)
src/lisp.h

index 057a7fe8a421c61354d0d6510fff42e04b5c689d..93e7094b420fe8a7e40976d1395b7ae7afc663bd 100644 (file)
@@ -2213,7 +2213,6 @@ SYMBOL_VAL (struct Lisp_Symbol *sym)
   eassert (sym->u.s.redirect == SYMBOL_PLAINVAL);
   if (EQ (sym->u.s.val.value, Qunbound))
     return Qunbound;
-  eassert (BINDINGP (sym->u.s.val.value));
   EMACS_INT lexspace = CURRENT_LEXSPACE;
   struct Lisp_Binding *binding = XBINDING (sym->u.s.val.value);
   /* Follow redirections.  */