Mercurial > emacs
changeset 39810:4b565579e4f5
(Vload_suffixes, Vexec_suffixes): Declare.
(openp): Update prototype.
author | Stefan Monnier <monnier@iro.umontreal.ca> |
---|---|
date | Fri, 12 Oct 2001 03:22:15 +0000 |
parents | 57070445ceac |
children | 9f7e72fba3d2 |
files | src/lisp.h |
diffstat | 1 files changed, 5 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- 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));