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
2082742e
Commit
2082742e
authored
May 24, 2014
by
Paul Eggert
Browse files
* xdisp.c (safe__call1, safe__eval): Now static.
parent
376f53c5
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
2 deletions
+6
-2
src/ChangeLog
src/ChangeLog
+4
-0
src/xdisp.c
src/xdisp.c
+2
-2
No files found.
src/ChangeLog
View file @
2082742e
2014-05-24 Paul Eggert <eggert@cs.ucla.edu>
* xdisp.c (safe__call1, safe__eval): Now static.
2014-05-24 Eli Zaretskii <eliz@gnu.org>
* xdisp.c (safe__call): Accept va_list argument instead of '...'.
...
...
src/xdisp.c
View file @
2082742e
...
...
@@ -2646,7 +2646,7 @@ safe_call1 (Lisp_Object fn, Lisp_Object arg)
return safe_call (2, fn, arg);
}
Lisp_Object
static
Lisp_Object
safe__call1 (bool inhibit_quit, Lisp_Object fn, ...)
{
Lisp_Object retval;
...
...
@@ -2666,7 +2666,7 @@ safe_eval (Lisp_Object sexpr)
return safe__call1 (false, Qeval, sexpr);
}
Lisp_Object
static
Lisp_Object
safe__eval (bool inhibit_quit, Lisp_Object sexpr)
{
return safe__call1 (inhibit_quit, Qeval, sexpr);
...
...
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