diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/lisp.h | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/lisp.h b/src/lisp.h index 28d93e45e58..719b95d5130 100644 --- a/src/lisp.h +++ b/src/lisp.h | |||
| @@ -2376,8 +2376,9 @@ extern Lisp_Object oblookup P_ ((Lisp_Object, char *, int, int)); | |||
| 2376 | #define LOADHIST_ATTACH(x) \ | 2376 | #define LOADHIST_ATTACH(x) \ |
| 2377 | if (initialized) Vcurrent_load_list = Fcons (x, Vcurrent_load_list) | 2377 | if (initialized) Vcurrent_load_list = Fcons (x, Vcurrent_load_list) |
| 2378 | extern Lisp_Object Vcurrent_load_list; | 2378 | extern Lisp_Object Vcurrent_load_list; |
| 2379 | extern Lisp_Object Vload_history; | 2379 | extern Lisp_Object Vload_history, Vload_suffixes; |
| 2380 | extern int openp P_ ((Lisp_Object, Lisp_Object, char *, Lisp_Object *, int)); | 2380 | extern int openp P_ ((Lisp_Object, Lisp_Object, Lisp_Object, |
| 2381 | Lisp_Object *, int)); | ||
| 2381 | extern int isfloat_string P_ ((char *)); | 2382 | extern int isfloat_string P_ ((char *)); |
| 2382 | extern void map_obarray P_ ((Lisp_Object, void (*) (Lisp_Object, Lisp_Object), | 2383 | extern void map_obarray P_ ((Lisp_Object, void (*) (Lisp_Object, Lisp_Object), |
| 2383 | Lisp_Object)); | 2384 | Lisp_Object)); |
| @@ -2839,7 +2840,8 @@ extern void init_process P_ ((void)); | |||
| 2839 | extern void syms_of_process P_ ((void)); | 2840 | extern void syms_of_process P_ ((void)); |
| 2840 | 2841 | ||
| 2841 | /* defined in callproc.c */ | 2842 | /* defined in callproc.c */ |
| 2842 | extern Lisp_Object Vexec_path, Vexec_directory, Vdata_directory; | 2843 | extern Lisp_Object Vexec_path, Vexec_suffixes, |
| 2844 | Vexec_directory, Vdata_directory; | ||
| 2843 | extern Lisp_Object Vdoc_directory; | 2845 | extern Lisp_Object Vdoc_directory; |
| 2844 | EXFUN (Fcall_process, MANY); | 2846 | EXFUN (Fcall_process, MANY); |
| 2845 | extern int child_setup P_ ((int, int, int, char **, int, Lisp_Object)); | 2847 | extern int child_setup P_ ((int, int, int, char **, int, Lisp_Object)); |