emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] master c85d9e4: * src/xfns.c: Make some non-exported vars


From: Paul Eggert
Subject: [Emacs-diffs] master c85d9e4: * src/xfns.c: Make some non-exported vars static.
Date: Thu, 1 Feb 2018 12:11:30 -0500 (EST)

branch: master
commit c85d9e401a686637284752a0eadc52f7a6b439d7
Author: Paul Eggert <address@hidden>
Commit: Paul Eggert <address@hidden>

    * src/xfns.c: Make some non-exported vars static.
---
 src/xfns.c | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/src/xfns.c b/src/xfns.c
index 92cd12b..db1ce31 100644
--- a/src/xfns.c
+++ b/src/xfns.c
@@ -6064,7 +6064,7 @@ static void compute_tip_xy (struct frame *, Lisp_Object, 
Lisp_Object,
                            Lisp_Object, int, int, int *, int *);
 
 /* The frame of the currently visible tooltip.  */
-Lisp_Object tip_frame;
+static Lisp_Object tip_frame;
 
 /* The window-system window corresponding to the frame of the
    currently visible tooltip.  */
@@ -6072,16 +6072,16 @@ Window tip_window;
 
 /* A timer that hides or deletes the currently visible tooltip when it
    fires.  */
-Lisp_Object tip_timer;
+static Lisp_Object tip_timer;
 
 /* STRING argument of last `x-show-tip' call.  */
-Lisp_Object tip_last_string;
+static Lisp_Object tip_last_string;
 
 /* FRAME argument of last `x-show-tip' call.  */
-Lisp_Object tip_last_frame;
+static Lisp_Object tip_last_frame;
 
 /* PARMS argument of last `x-show-tip' call.  */
-Lisp_Object tip_last_parms;
+static Lisp_Object tip_last_parms;
 
 
 static void



reply via email to

[Prev in Thread] Current Thread [Next in Thread]