diff options
Diffstat (limited to 'src/data.c')
| -rw-r--r-- | src/data.c | 8 |
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 | ||
| 65 | static struct Lisp_Boolfwd * | 65 | static struct Lisp_Boolfwd const * |
| 66 | XBOOLFWD (lispfwd a) | 66 | XBOOLFWD (lispfwd a) |
| 67 | { | 67 | { |
| 68 | eassert (BOOLFWDP (a)); | 68 | eassert (BOOLFWDP (a)); |
| 69 | return a.fwdptr; | 69 | return a.fwdptr; |
| 70 | } | 70 | } |
| 71 | static struct Lisp_Kboard_Objfwd * | 71 | static struct Lisp_Kboard_Objfwd const * |
| 72 | XKBOARD_OBJFWD (lispfwd a) | 72 | XKBOARD_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 | } |
| 77 | static struct Lisp_Intfwd * | 77 | static struct Lisp_Intfwd const * |
| 78 | XFIXNUMFWD (lispfwd a) | 78 | XFIXNUMFWD (lispfwd a) |
| 79 | { | 79 | { |
| 80 | eassert (INTFWDP (a)); | 80 | eassert (INTFWDP (a)); |
| 81 | return a.fwdptr; | 81 | return a.fwdptr; |
| 82 | } | 82 | } |
| 83 | static struct Lisp_Objfwd * | 83 | static struct Lisp_Objfwd const * |
| 84 | XOBJFWD (lispfwd a) | 84 | XOBJFWD (lispfwd a) |
| 85 | { | 85 | { |
| 86 | eassert (OBJFWDP (a)); | 86 | eassert (OBJFWDP (a)); |