diff options
| author | Helmut Eller | 2026-02-13 09:10:16 +0100 |
|---|---|---|
| committer | Helmut Eller | 2026-02-13 09:10:16 +0100 |
| commit | 91c9e9883488d715a30877dfd7641ef4b3c62658 (patch) | |
| tree | e2c4525147e443f86baf9d0144aeadec082d7564 /src/lisp.h | |
| parent | 9a4a54af9192a6653164364c75721ee814ffb1e8 (diff) | |
| parent | f1fe4d46190263e164ccd1e066095d46a156297f (diff) | |
| download | emacs-feature/igc.tar.gz emacs-feature/igc.zip | |
Merge branch 'master' into feature/igcfeature/igc
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 | ||