]> git.eshelyaron.com Git - emacs.git/commitdiff
(merge_face_heights): Use safe_call instead of
authorGerd Moellmann <gerd@gnu.org>
Thu, 5 Oct 2000 19:30:21 +0000 (19:30 +0000)
committerGerd Moellmann <gerd@gnu.org>
Thu, 5 Oct 2000 19:30:21 +0000 (19:30 +0000)
call_function.

src/ChangeLog
src/xfaces.c

index 8861cde7612ad27aae7ccf7c4e1984579110fbe9..d18eacce33d8723beca4dc2da2ac8b7cb2b394d7 100644 (file)
@@ -1,3 +1,26 @@
+2000-10-05  Gerd Moellmann  <gerd@gnu.org>
+
+       * keyboard.c (Frecursive_edit): Make sure redisplay can happen.
+
+       * xdisp.c (handle_single_display_prop): Use safe_call1.
+       (safe_call): Renamed from call_function.
+       (safe_call1): New function.
+       (handle_fontified_prop): Use safe_call1 instead of call1.
+       (safe_eval): Renamed from eval_form.
+       (safe_eval_handler): Renamed from eval_handler.
+       (handle_single_display_prop, display_mode_element): Use safe_eval
+       instead of eval_form.
+
+       * xfaces.c (merge_face_heights): Use safe_call instead of
+       call_function.
+
+       * keyboard.c (show_help_echo): Use safe_call instead of
+       call_function; use safe_eval instead of eval_form.
+
+       * lisp.h (safe_call): Renamed from call_function.
+       (safe_eval): Renamed from eval_form.
+       (safe_call1): Add prototype.
+
 2000-10-05  Miles Bader  <miles@lsi.nec.co.jp>
 
        * xfns.c (image_ascent): Rearrange ascent calculation for the
index 36e68a88305b41249cc08e40f7e6f88ce12af9c4..f12ec242e7fa3d6b7efe87f61b409cd99fd3c453 100644 (file)
@@ -3099,7 +3099,7 @@ merge_face_heights (from, to, invalid, gcpro)
 
       args[0] = from;
       args[1] = to;
-      height = call_function (2, args);
+      height = safe_call (2, args);
 
       UNGCPRO;