* xdisp.c (safe__call1, safe__eval): Now static.
This commit is contained in:
parent
376f53c544
commit
2082742ed4
2 changed files with 6 additions and 2 deletions
|
@ -1,3 +1,7 @@
|
|||
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 '...'.
|
||||
|
|
|
@ -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);
|
||||
|
|
Loading…
Add table
Reference in a new issue