Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
ca839c85
Commit
ca839c85
authored
Oct 05, 2000
by
Gerd Moellmann
Browse files
(merge_face_heights): Use safe_call instead of
call_function.
parent
116d6f5c
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
24 additions
and
1 deletion
+24
-1
src/ChangeLog
src/ChangeLog
+23
-0
src/xfaces.c
src/xfaces.c
+1
-1
No files found.
src/ChangeLog
View file @
ca839c85
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
...
...
src/xfaces.c
View file @
ca839c85
...
...
@@ -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;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment