1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-02-26 09:51:31 -08:00

* src/lisp.h (struct Lisp_Fwd): Add comments.

This commit is contained in:
Helmut Eller 2026-02-12 18:42:05 +01:00
parent 737ad9080b
commit eece2377dd

View file

@ -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;
};