diff options
| author | Gerd Moellmann | 2000-10-05 19:26:09 +0000 |
|---|---|---|
| committer | Gerd Moellmann | 2000-10-05 19:26:09 +0000 |
| commit | a18c0a477e917eee64654a043b595258174e9d88 (patch) | |
| tree | bf6c172d4afba178f41051882c68b967665e4ac5 /src | |
| parent | 721d5fba2dc04654a41b3ce992f58ac5514f158e (diff) | |
| download | emacs-a18c0a477e917eee64654a043b595258174e9d88.tar.gz emacs-a18c0a477e917eee64654a043b595258174e9d88.zip | |
(safe_call): Renamed from call_function.
(safe_eval): Renamed from eval_form.
(safe_call1): Add prototype.
Diffstat (limited to 'src')
| -rw-r--r-- | src/lisp.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/lisp.h b/src/lisp.h index 0e45bbe4eec..9f5a94408e9 100644 --- a/src/lisp.h +++ b/src/lisp.h | |||
| @@ -2150,7 +2150,7 @@ extern int invisible_p P_ ((Lisp_Object, Lisp_Object)); | |||
| 2150 | extern void prepare_menu_bars P_ ((void)); | 2150 | extern void prepare_menu_bars P_ ((void)); |
| 2151 | extern void syms_of_xdisp P_ ((void)); | 2151 | extern void syms_of_xdisp P_ ((void)); |
| 2152 | extern void init_xdisp P_ ((void)); | 2152 | extern void init_xdisp P_ ((void)); |
| 2153 | extern Lisp_Object eval_form P_ ((Lisp_Object)); | 2153 | extern Lisp_Object safe_eval P_ ((Lisp_Object)); |
| 2154 | 2154 | ||
| 2155 | /* Defined in vm-limit.c. */ | 2155 | /* Defined in vm-limit.c. */ |
| 2156 | extern void memory_warnings P_ ((POINTER_TYPE *, void (*warnfun) ())); | 2156 | extern void memory_warnings P_ ((POINTER_TYPE *, void (*warnfun) ())); |
| @@ -2334,7 +2334,8 @@ extern void do_autoload P_ ((Lisp_Object, Lisp_Object)); | |||
| 2334 | extern Lisp_Object un_autoload P_ ((Lisp_Object)); | 2334 | extern Lisp_Object un_autoload P_ ((Lisp_Object)); |
| 2335 | EXFUN (Ffetch_bytecode, 1); | 2335 | EXFUN (Ffetch_bytecode, 1); |
| 2336 | extern void init_eval_once P_ ((void)); | 2336 | extern void init_eval_once P_ ((void)); |
| 2337 | extern Lisp_Object call_function P_ ((int, Lisp_Object *)); | 2337 | extern Lisp_Object safe_call P_ ((int, Lisp_Object *)); |
| 2338 | extern Lisp_Object safe_call1 P_ ((Lisp_Object, Lisp_Object)); | ||
| 2338 | extern void init_eval P_ ((void)); | 2339 | extern void init_eval P_ ((void)); |
| 2339 | extern void syms_of_eval P_ ((void)); | 2340 | extern void syms_of_eval P_ ((void)); |
| 2340 | 2341 | ||