diff options
Diffstat (limited to 'src/lisp.h')
| -rw-r--r-- | src/lisp.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/lisp.h b/src/lisp.h index 2d25f781091..80e01492c37 100644 --- a/src/lisp.h +++ b/src/lisp.h | |||
| @@ -3480,15 +3480,15 @@ struct Lisp_Fwd | |||
| 3480 | enum Lisp_Fwd_Type type : 8; | 3480 | enum Lisp_Fwd_Type type : 8; |
| 3481 | union | 3481 | union |
| 3482 | { | 3482 | { |
| 3483 | intmax_t *intvar; | 3483 | intmax_t *intvar; /* when type == Lisp_Fwd_Int */ |
| 3484 | bool *boolvar; | 3484 | bool *boolvar; /* when type == Lisp_Fwd_Bool */ |
| 3485 | Lisp_Object *objvar; | 3485 | Lisp_Object *objvar; /* when type == Lisp_Fwd_Obj */ |
| 3486 | struct | 3486 | struct |
| 3487 | { | 3487 | { |
| 3488 | uint16_t offset; | 3488 | uint16_t offset; |
| 3489 | enum Lisp_Fwd_Predicate predicate : 8; | 3489 | enum Lisp_Fwd_Predicate predicate : 8; |
| 3490 | } buf; | 3490 | } buf; /* when type == Lisp_Fwd_Buffer_Obj */ |
| 3491 | int kbdoffset; | 3491 | int kbdoffset; /* when type == Lisp_Fwd_Kboard_Obj */ |
| 3492 | } u; | 3492 | } u; |
| 3493 | }; | 3493 | }; |
| 3494 | 3494 | ||