aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGerd Moellmann2000-10-05 19:30:21 +0000
committerGerd Moellmann2000-10-05 19:30:21 +0000
commitca839c85bec8a1bbf2c3e45a913bbc2505b023b4 (patch)
tree0fc74f595bbef0237959fb694347309da9f11741
parent116d6f5cae9f9d226f34226b073de61228f1ea04 (diff)
downloademacs-ca839c85bec8a1bbf2c3e45a913bbc2505b023b4.tar.gz
emacs-ca839c85bec8a1bbf2c3e45a913bbc2505b023b4.zip
(merge_face_heights): Use safe_call instead of
call_function.
-rw-r--r--src/ChangeLog23
-rw-r--r--src/xfaces.c2
2 files changed, 24 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 8861cde7612..d18eacce33d 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,26 @@
12000-10-05 Gerd Moellmann <gerd@gnu.org>
2
3 * keyboard.c (Frecursive_edit): Make sure redisplay can happen.
4
5 * xdisp.c (handle_single_display_prop): Use safe_call1.
6 (safe_call): Renamed from call_function.
7 (safe_call1): New function.
8 (handle_fontified_prop): Use safe_call1 instead of call1.
9 (safe_eval): Renamed from eval_form.
10 (safe_eval_handler): Renamed from eval_handler.
11 (handle_single_display_prop, display_mode_element): Use safe_eval
12 instead of eval_form.
13
14 * xfaces.c (merge_face_heights): Use safe_call instead of
15 call_function.
16
17 * keyboard.c (show_help_echo): Use safe_call instead of
18 call_function; use safe_eval instead of eval_form.
19
20 * lisp.h (safe_call): Renamed from call_function.
21 (safe_eval): Renamed from eval_form.
22 (safe_call1): Add prototype.
23
12000-10-05 Miles Bader <miles@lsi.nec.co.jp> 242000-10-05 Miles Bader <miles@lsi.nec.co.jp>
2 25
3 * xfns.c (image_ascent): Rearrange ascent calculation for the 26 * xfns.c (image_ascent): Rearrange ascent calculation for the
diff --git a/src/xfaces.c b/src/xfaces.c
index 36e68a88305..f12ec242e7f 100644
--- a/src/xfaces.c
+++ b/src/xfaces.c
@@ -3099,7 +3099,7 @@ merge_face_heights (from, to, invalid, gcpro)
3099 3099
3100 args[0] = from; 3100 args[0] = from;
3101 args[1] = to; 3101 args[1] = to;
3102 height = call_function (2, args); 3102 height = safe_call (2, args);
3103 3103
3104 UNGCPRO; 3104 UNGCPRO;
3105 3105