aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorHelmut Eller2026-02-12 18:42:05 +0100
committerHelmut Eller2026-02-12 18:51:51 +0100
commiteece2377dd2e2113f97b27d4ca43f718e6e3e2a7 (patch)
treedf93b42d07b5eca534715871416f08d662033ebb /src
parent737ad9080b40aafd9a38afa078eaf19a5bb7fbae (diff)
downloademacs-eece2377dd2e2113f97b27d4ca43f718e6e3e2a7.tar.gz
emacs-eece2377dd2e2113f97b27d4ca43f718e6e3e2a7.zip
* src/lisp.h (struct Lisp_Fwd): Add comments.
Diffstat (limited to 'src')
-rw-r--r--src/lisp.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/lisp.h b/src/lisp.h
index f1ab29ef2f2..6d2fd4b83f2 100644
--- a/src/lisp.h
+++ b/src/lisp.h
@@ -3120,15 +3120,15 @@ struct Lisp_Fwd
3120 enum Lisp_Fwd_Type type : 8; 3120 enum Lisp_Fwd_Type type : 8;
3121 union 3121 union
3122 { 3122 {
3123 intmax_t *intvar; 3123 intmax_t *intvar; /* when type == Lisp_Fwd_Int */
3124 bool *boolvar; 3124 bool *boolvar; /* when type == Lisp_Fwd_Bool */
3125 Lisp_Object *objvar; 3125 Lisp_Object *objvar; /* when type == Lisp_Fwd_Obj */
3126 struct 3126 struct
3127 { 3127 {
3128 uint16_t offset; 3128 uint16_t offset;
3129 enum Lisp_Fwd_Predicate predicate : 8; 3129 enum Lisp_Fwd_Predicate predicate : 8;
3130 } buf; 3130 } buf; /* when type == Lisp_Fwd_Buffer_Obj */
3131 int kbdoffset; 3131 int kbdoffset; /* when type == Lisp_Fwd_Kboard_Obj */
3132 } u; 3132 } u;
3133}; 3133};
3134 3134