From: Paul Eggert Date: Sat, 24 May 2014 21:28:43 +0000 (-0700) Subject: * xdisp.c (safe__call1, safe__eval): Now static. X-Git-Tag: emacs-24.3.92~169 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=2082742ed441e799577117ca93bef4510f1bb1b6;p=emacs.git * xdisp.c (safe__call1, safe__eval): Now static. --- diff --git a/src/ChangeLog b/src/ChangeLog index 2bce5e71df8..2ef383c7b49 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,7 @@ +2014-05-24 Paul Eggert + + * xdisp.c (safe__call1, safe__eval): Now static. + 2014-05-24 Eli Zaretskii * xdisp.c (safe__call): Accept va_list argument instead of '...'. diff --git a/src/xdisp.c b/src/xdisp.c index 7407390d4f4..6cdc50ac589 100644 --- a/src/xdisp.c +++ b/src/xdisp.c @@ -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);