aboutsummaryrefslogtreecommitdiffstats
path: root/src/data.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/data.c')
-rw-r--r--src/data.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/data.c b/src/data.c
index 936bb74f69a..11cd598ed85 100644
--- a/src/data.c
+++ b/src/data.c
@@ -62,25 +62,25 @@ OBJFWDP (lispfwd a)
62 return XFWDTYPE (a) == Lisp_Fwd_Obj; 62 return XFWDTYPE (a) == Lisp_Fwd_Obj;
63} 63}
64 64
65static struct Lisp_Boolfwd * 65static struct Lisp_Boolfwd const *
66XBOOLFWD (lispfwd a) 66XBOOLFWD (lispfwd a)
67{ 67{
68 eassert (BOOLFWDP (a)); 68 eassert (BOOLFWDP (a));
69 return a.fwdptr; 69 return a.fwdptr;
70} 70}
71static struct Lisp_Kboard_Objfwd * 71static struct Lisp_Kboard_Objfwd const *
72XKBOARD_OBJFWD (lispfwd a) 72XKBOARD_OBJFWD (lispfwd a)
73{ 73{
74 eassert (KBOARD_OBJFWDP (a)); 74 eassert (KBOARD_OBJFWDP (a));
75 return a.fwdptr; 75 return a.fwdptr;
76} 76}
77static struct Lisp_Intfwd * 77static struct Lisp_Intfwd const *
78XFIXNUMFWD (lispfwd a) 78XFIXNUMFWD (lispfwd a)
79{ 79{
80 eassert (INTFWDP (a)); 80 eassert (INTFWDP (a));
81 return a.fwdptr; 81 return a.fwdptr;
82} 82}
83static struct Lisp_Objfwd * 83static struct Lisp_Objfwd const *
84XOBJFWD (lispfwd a) 84XOBJFWD (lispfwd a)
85{ 85{
86 eassert (OBJFWDP (a)); 86 eassert (OBJFWDP (a));