aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/lisp.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/lisp.h b/src/lisp.h
index 8428b6a95d7..ee9b7b62bf4 100644
--- a/src/lisp.h
+++ b/src/lisp.h
@@ -941,7 +941,6 @@ XSYMBOL (Lisp_Object a)
941{ 941{
942 eassert (SYMBOLP (a)); 942 eassert (SYMBOLP (a));
943 intptr_t i = (intptr_t) XUNTAG (a, Lisp_Symbol); 943 intptr_t i = (intptr_t) XUNTAG (a, Lisp_Symbol);
944 eassert (0 <= i);
945 void *p = (char *) lispsym + i; 944 void *p = (char *) lispsym + i;
946 return p; 945 return p;
947} 946}