aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/lisp.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lisp.h b/src/lisp.h
index c3309c81a16..f0beafba42c 100644
--- a/src/lisp.h
+++ b/src/lisp.h
@@ -1166,7 +1166,7 @@ make_lisp_symbol (struct Lisp_Symbol *sym)
1166 cast to char * rather than to intptr_t. */ 1166 cast to char * rather than to intptr_t. */
1167 char *symoffset = (char *) ((char *) sym - (char *) lispsym); 1167 char *symoffset = (char *) ((char *) sym - (char *) lispsym);
1168 Lisp_Object a = TAG_PTR (Lisp_Symbol, symoffset); 1168 Lisp_Object a = TAG_PTR (Lisp_Symbol, symoffset);
1169 eassert (XSYMBOL (a) == sym); 1169 eassert (XBARE_SYMBOL (a) == sym);
1170 return a; 1170 return a;
1171} 1171}
1172 1172