diff options
Diffstat (limited to 'src/lisp.h')
| -rw-r--r-- | src/lisp.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/lisp.h b/src/lisp.h index 13cb9fbcbb7..981ab3f6f0b 100644 --- a/src/lisp.h +++ b/src/lisp.h | |||
| @@ -3751,11 +3751,12 @@ extern Lisp_Object internal_condition_case_n | |||
| 3751 | Lisp_Object, Lisp_Object (*) (Lisp_Object, ptrdiff_t, Lisp_Object *)); | 3751 | Lisp_Object, Lisp_Object (*) (Lisp_Object, ptrdiff_t, Lisp_Object *)); |
| 3752 | extern void specbind (Lisp_Object, Lisp_Object); | 3752 | extern void specbind (Lisp_Object, Lisp_Object); |
| 3753 | extern void record_unwind_protect (void (*) (Lisp_Object), Lisp_Object); | 3753 | extern void record_unwind_protect (void (*) (Lisp_Object), Lisp_Object); |
| 3754 | extern void record_unwind_protect_int (void (*) (int), int); | ||
| 3755 | extern void record_unwind_protect_ptr (void (*) (void *), void *); | 3754 | extern void record_unwind_protect_ptr (void (*) (void *), void *); |
| 3755 | extern void record_unwind_protect_int (void (*) (int), int); | ||
| 3756 | extern void record_unwind_protect_void (void (*) (void)); | 3756 | extern void record_unwind_protect_void (void (*) (void)); |
| 3757 | extern void record_unwind_protect_nothing (void); | 3757 | extern void record_unwind_protect_nothing (void); |
| 3758 | extern void clear_unwind_protect (ptrdiff_t); | 3758 | extern void clear_unwind_protect (ptrdiff_t); |
| 3759 | extern void set_unwind_protect (ptrdiff_t, void (*) (Lisp_Object), Lisp_Object); | ||
| 3759 | extern void set_unwind_protect_ptr (ptrdiff_t, void (*) (void *), void *); | 3760 | extern void set_unwind_protect_ptr (ptrdiff_t, void (*) (void *), void *); |
| 3760 | extern Lisp_Object unbind_to (ptrdiff_t, Lisp_Object); | 3761 | extern Lisp_Object unbind_to (ptrdiff_t, Lisp_Object); |
| 3761 | extern _Noreturn void error (const char *, ...) ATTRIBUTE_FORMAT_PRINTF (1, 2); | 3762 | extern _Noreturn void error (const char *, ...) ATTRIBUTE_FORMAT_PRINTF (1, 2); |
| @@ -3835,6 +3836,9 @@ extern Lisp_Object Qfile_directory_p; | |||
| 3835 | extern Lisp_Object Qinsert_file_contents; | 3836 | extern Lisp_Object Qinsert_file_contents; |
| 3836 | extern Lisp_Object Qfile_name_history; | 3837 | extern Lisp_Object Qfile_name_history; |
| 3837 | extern Lisp_Object expand_and_dir_to_file (Lisp_Object, Lisp_Object); | 3838 | extern Lisp_Object expand_and_dir_to_file (Lisp_Object, Lisp_Object); |
| 3839 | extern Lisp_Object write_region (Lisp_Object, Lisp_Object, Lisp_Object, | ||
| 3840 | Lisp_Object, Lisp_Object, Lisp_Object, | ||
| 3841 | Lisp_Object, int); | ||
| 3838 | EXFUN (Fread_file_name, 6); /* Not a normal DEFUN. */ | 3842 | EXFUN (Fread_file_name, 6); /* Not a normal DEFUN. */ |
| 3839 | extern void close_file_unwind (int); | 3843 | extern void close_file_unwind (int); |
| 3840 | extern void fclose_unwind (void *); | 3844 | extern void fclose_unwind (void *); |