diff options
Diffstat (limited to 'src/lisp.h')
| -rw-r--r-- | src/lisp.h | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/src/lisp.h b/src/lisp.h index b7e5d9e3761..af3f587222d 100644 --- a/src/lisp.h +++ b/src/lisp.h | |||
| @@ -3188,6 +3188,7 @@ enum specbind_tag { | |||
| 3188 | SPECPDL_UNWIND, /* An unwind_protect function on Lisp_Object. */ | 3188 | SPECPDL_UNWIND, /* An unwind_protect function on Lisp_Object. */ |
| 3189 | SPECPDL_UNWIND_PTR, /* Likewise, on void *. */ | 3189 | SPECPDL_UNWIND_PTR, /* Likewise, on void *. */ |
| 3190 | SPECPDL_UNWIND_INT, /* Likewise, on int. */ | 3190 | SPECPDL_UNWIND_INT, /* Likewise, on int. */ |
| 3191 | SPECPDL_UNWIND_EXCURSION, /* Likewise, on an execursion. */ | ||
| 3191 | SPECPDL_UNWIND_VOID, /* Likewise, with no arg. */ | 3192 | SPECPDL_UNWIND_VOID, /* Likewise, with no arg. */ |
| 3192 | SPECPDL_BACKTRACE, /* An element of the backtrace. */ | 3193 | SPECPDL_BACKTRACE, /* An element of the backtrace. */ |
| 3193 | SPECPDL_LET, /* A plain and simple dynamic let-binding. */ | 3194 | SPECPDL_LET, /* A plain and simple dynamic let-binding. */ |
| @@ -3216,6 +3217,10 @@ union specbinding | |||
| 3216 | } unwind_int; | 3217 | } unwind_int; |
| 3217 | struct { | 3218 | struct { |
| 3218 | ENUM_BF (specbind_tag) kind : CHAR_BIT; | 3219 | ENUM_BF (specbind_tag) kind : CHAR_BIT; |
| 3220 | Lisp_Object marker, window; | ||
| 3221 | } unwind_excursion; | ||
| 3222 | struct { | ||
| 3223 | ENUM_BF (specbind_tag) kind : CHAR_BIT; | ||
| 3219 | void (*func) (void); | 3224 | void (*func) (void); |
| 3220 | } unwind_void; | 3225 | } unwind_void; |
| 3221 | struct { | 3226 | struct { |
| @@ -4106,9 +4111,9 @@ extern void mark_threads (void); | |||
| 4106 | 4111 | ||
| 4107 | /* Defined in editfns.c. */ | 4112 | /* Defined in editfns.c. */ |
| 4108 | extern void insert1 (Lisp_Object); | 4113 | extern void insert1 (Lisp_Object); |
| 4109 | extern Lisp_Object save_excursion_save (void); | 4114 | extern void save_excursion_save (union specbinding *); |
| 4115 | extern void save_excursion_restore (Lisp_Object, Lisp_Object); | ||
| 4110 | extern Lisp_Object save_restriction_save (void); | 4116 | extern Lisp_Object save_restriction_save (void); |
| 4111 | extern void save_excursion_restore (Lisp_Object); | ||
| 4112 | extern void save_restriction_restore (Lisp_Object); | 4117 | extern void save_restriction_restore (Lisp_Object); |
| 4113 | extern _Noreturn void time_overflow (void); | 4118 | extern _Noreturn void time_overflow (void); |
| 4114 | extern Lisp_Object make_buffer_string (ptrdiff_t, ptrdiff_t, bool); | 4119 | extern Lisp_Object make_buffer_string (ptrdiff_t, ptrdiff_t, bool); |