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
7311509e
Commit
7311509e
authored
May 29, 2006
by
Kenichi Handa
Browse files
(Ffind_operation_coding_system): Call a function by
safe_call1 instead of call1.
parent
0985f920
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
1 deletion
+6
-1
src/ChangeLog
src/ChangeLog
+5
-0
src/coding.c
src/coding.c
+1
-1
No files found.
src/ChangeLog
View file @
7311509e
2006-05-29 Kenichi Handa <handa@m17n.org>
* coding.c (Ffind_operation_coding_system): Call a function by
safe_call1 instead of call1.
2006-05-28 Kim F. Storm <storm@cua.dk>
* xdisp.c (set_cursor_from_row): If cursor cannot be set in row,
...
...
src/coding.c
View file @
7311509e
...
...
@@ -7539,7 +7539,7 @@ usage: (find-operation-coding-system OPERATION ARGUMENTS ...) */)
return Fcons (val, val);
if (! NILP (Ffboundp (val)))
{
val = call1 (val, Flist (nargs, args));
val =
safe_
call1 (val, Flist (nargs, args));
if (CONSP (val))
return val;
if (SYMBOLP (val) && ! NILP (Fcoding_system_p (val)))
...
...
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