* src/lisp.h (struct Lisp_Fwd): Add comments.
This commit is contained in:
10
src/lisp.h
10
src/lisp.h
@@ -3120,15 +3120,15 @@ struct Lisp_Fwd
|
||||
enum Lisp_Fwd_Type type : 8;
|
||||
union
|
||||
{
|
||||
intmax_t *intvar;
|
||||
bool *boolvar;
|
||||
Lisp_Object *objvar;
|
||||
intmax_t *intvar; /* when type == Lisp_Fwd_Int */
|
||||
bool *boolvar; /* when type == Lisp_Fwd_Bool */
|
||||
Lisp_Object *objvar; /* when type == Lisp_Fwd_Obj */
|
||||
struct
|
||||
{
|
||||
uint16_t offset;
|
||||
enum Lisp_Fwd_Predicate predicate : 8;
|
||||
} buf;
|
||||
int kbdoffset;
|
||||
} buf; /* when type == Lisp_Fwd_Buffer_Obj */
|
||||
int kbdoffset; /* when type == Lisp_Fwd_Kboard_Obj */
|
||||
} u;
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user