]> git.eshelyaron.com Git - emacs.git/commitdiff
(safe_call): Renamed from call_function.
authorGerd Moellmann <gerd@gnu.org>
Thu, 5 Oct 2000 19:26:09 +0000 (19:26 +0000)
committerGerd Moellmann <gerd@gnu.org>
Thu, 5 Oct 2000 19:26:09 +0000 (19:26 +0000)
(safe_eval): Renamed from eval_form.
(safe_call1): Add prototype.

src/lisp.h

index 0e45bbe4eec042ec9987d3c79f3d96066d41e9a8..9f5a94408e9b188bf266ea3a6d50b2605f233d96 100644 (file)
@@ -2150,7 +2150,7 @@ extern int invisible_p P_ ((Lisp_Object, Lisp_Object));
 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 void do_autoload P_ ((Lisp_Object, Lisp_Object));
 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));