Mercurial > emacs
changeset 69171:269a00c6f882
EXFUN Fget_load_suffixes. Extern Vload_file_rep_suffixes.
author | Luc Teirlinck <teirllm@auburn.edu> |
---|---|
date | Mon, 27 Feb 2006 02:06:01 +0000 |
parents | 7de818fd5125 |
children | e22243af3267 |
files | src/lisp.h |
diffstat | 1 files changed, 2 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/src/lisp.h Mon Feb 27 02:04:35 2006 +0000 +++ b/src/lisp.h Mon Feb 27 02:06:01 2006 +0000 @@ -2603,6 +2603,7 @@ EXFUN (Fintern, 2); EXFUN (Fintern_soft, 2); EXFUN (Fload, 5); +EXFUN (Fget_load_suffixes, 0); EXFUN (Fget_file_char, 0); EXFUN (Fread_char, 2); EXFUN (Fread_event, 2); @@ -2614,7 +2615,7 @@ #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, Vload_suffixes; +extern Lisp_Object Vload_history, Vload_suffixes, Vload_file_rep_suffixes; extern int openp P_ ((Lisp_Object, Lisp_Object, Lisp_Object, Lisp_Object *, Lisp_Object)); extern int isfloat_string P_ ((char *));