aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorStefan Monnier2001-10-12 03:22:15 +0000
committerStefan Monnier2001-10-12 03:22:15 +0000
commit183d18335505777fe44514c86ea97efba2b0e3af (patch)
tree50fa46351f3bc7fbd1e9b653802ea8ead1056f14 /src
parentddb716ef9746917e842ea6d5a969a206aeddd2bb (diff)
downloademacs-183d18335505777fe44514c86ea97efba2b0e3af.tar.gz
emacs-183d18335505777fe44514c86ea97efba2b0e3af.zip
(Vload_suffixes, Vexec_suffixes): Declare.
(openp): Update prototype.
Diffstat (limited to 'src')
-rw-r--r--src/lisp.h8
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)
2378extern Lisp_Object Vcurrent_load_list; 2378extern Lisp_Object Vcurrent_load_list;
2379extern Lisp_Object Vload_history; 2379extern Lisp_Object Vload_history, Vload_suffixes;
2380extern int openp P_ ((Lisp_Object, Lisp_Object, char *, Lisp_Object *, int)); 2380extern int openp P_ ((Lisp_Object, Lisp_Object, Lisp_Object,
2381 Lisp_Object *, int));
2381extern int isfloat_string P_ ((char *)); 2382extern int isfloat_string P_ ((char *));
2382extern void map_obarray P_ ((Lisp_Object, void (*) (Lisp_Object, Lisp_Object), 2383extern 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));
2839extern void syms_of_process P_ ((void)); 2840extern void syms_of_process P_ ((void));
2840 2841
2841/* defined in callproc.c */ 2842/* defined in callproc.c */
2842extern Lisp_Object Vexec_path, Vexec_directory, Vdata_directory; 2843extern Lisp_Object Vexec_path, Vexec_suffixes,
2844 Vexec_directory, Vdata_directory;
2843extern Lisp_Object Vdoc_directory; 2845extern Lisp_Object Vdoc_directory;
2844EXFUN (Fcall_process, MANY); 2846EXFUN (Fcall_process, MANY);
2845extern int child_setup P_ ((int, int, int, char **, int, Lisp_Object)); 2847extern int child_setup P_ ((int, int, int, char **, int, Lisp_Object));