aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/xfns.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/xfns.c b/src/xfns.c
index 92cd12be164..db1ce311021 100644
--- a/src/xfns.c
+++ b/src/xfns.c
@@ -6064,7 +6064,7 @@ static void compute_tip_xy (struct frame *, Lisp_Object, Lisp_Object,
6064 Lisp_Object, int, int, int *, int *); 6064 Lisp_Object, int, int, int *, int *);
6065 6065
6066/* The frame of the currently visible tooltip. */ 6066/* The frame of the currently visible tooltip. */
6067Lisp_Object tip_frame; 6067static Lisp_Object tip_frame;
6068 6068
6069/* The window-system window corresponding to the frame of the 6069/* The window-system window corresponding to the frame of the
6070 currently visible tooltip. */ 6070 currently visible tooltip. */
@@ -6072,16 +6072,16 @@ Window tip_window;
6072 6072
6073/* A timer that hides or deletes the currently visible tooltip when it 6073/* A timer that hides or deletes the currently visible tooltip when it
6074 fires. */ 6074 fires. */
6075Lisp_Object tip_timer; 6075static Lisp_Object tip_timer;
6076 6076
6077/* STRING argument of last `x-show-tip' call. */ 6077/* STRING argument of last `x-show-tip' call. */
6078Lisp_Object tip_last_string; 6078static Lisp_Object tip_last_string;
6079 6079
6080/* FRAME argument of last `x-show-tip' call. */ 6080/* FRAME argument of last `x-show-tip' call. */
6081Lisp_Object tip_last_frame; 6081static Lisp_Object tip_last_frame;
6082 6082
6083/* PARMS argument of last `x-show-tip' call. */ 6083/* PARMS argument of last `x-show-tip' call. */
6084Lisp_Object tip_last_parms; 6084static Lisp_Object tip_last_parms;
6085 6085
6086 6086
6087static void 6087static void