# HG changeset patch # User Stefan Monnier # Date 1002856935 0 # Node ID 4b565579e4f5333c89e45e02f3e1572eaa6b8a63 # Parent 57070445ceac9ba9adae0b85be7794a340939a74 (Vload_suffixes, Vexec_suffixes): Declare. (openp): Update prototype. diff -r 57070445ceac -r 4b565579e4f5 src/lisp.h --- a/src/lisp.h Fri Oct 12 03:22:02 2001 +0000 +++ b/src/lisp.h Fri Oct 12 03:22:15 2001 +0000 @@ -2376,8 +2376,9 @@ #define LOADHIST_ATTACH(x) \ if (initialized) Vcurrent_load_list = Fcons (x, Vcurrent_load_list) extern Lisp_Object Vcurrent_load_list; -extern Lisp_Object Vload_history; -extern int openp P_ ((Lisp_Object, Lisp_Object, char *, Lisp_Object *, int)); +extern Lisp_Object Vload_history, Vload_suffixes; +extern int openp P_ ((Lisp_Object, Lisp_Object, Lisp_Object, + Lisp_Object *, int)); extern int isfloat_string P_ ((char *)); extern void map_obarray P_ ((Lisp_Object, void (*) (Lisp_Object, Lisp_Object), Lisp_Object)); @@ -2839,7 +2840,8 @@ extern void syms_of_process P_ ((void)); /* defined in callproc.c */ -extern Lisp_Object Vexec_path, Vexec_directory, Vdata_directory; +extern Lisp_Object Vexec_path, Vexec_suffixes, + Vexec_directory, Vdata_directory; extern Lisp_Object Vdoc_directory; EXFUN (Fcall_process, MANY); extern int child_setup P_ ((int, int, int, char **, int, Lisp_Object));