# HG changeset patch # User Gerd Moellmann # Date 970773969 0 # Node ID fea92799d3e9b936be1bbc24d5d1af2c546cd39a # Parent 8371ed6a1879ab131313dba95256908a6f7840f7 (safe_call): Renamed from call_function. (safe_eval): Renamed from eval_form. (safe_call1): Add prototype. diff -r 8371ed6a1879 -r fea92799d3e9 src/lisp.h --- a/src/lisp.h Thu Oct 05 18:20:13 2000 +0000 +++ b/src/lisp.h Thu Oct 05 19:26:09 2000 +0000 @@ -2150,7 +2150,7 @@ extern void prepare_menu_bars P_ ((void)); extern void syms_of_xdisp P_ ((void)); extern void init_xdisp P_ ((void)); -extern Lisp_Object eval_form P_ ((Lisp_Object)); +extern Lisp_Object safe_eval P_ ((Lisp_Object)); /* Defined in vm-limit.c. */ extern void memory_warnings P_ ((POINTER_TYPE *, void (*warnfun) ())); @@ -2334,7 +2334,8 @@ extern Lisp_Object un_autoload P_ ((Lisp_Object)); EXFUN (Ffetch_bytecode, 1); extern void init_eval_once P_ ((void)); -extern Lisp_Object call_function P_ ((int, Lisp_Object *)); +extern Lisp_Object safe_call P_ ((int, Lisp_Object *)); +extern Lisp_Object safe_call1 P_ ((Lisp_Object, Lisp_Object)); extern void init_eval P_ ((void)); extern void syms_of_eval P_ ((void));