aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPaul Eggert2018-02-01 09:10:55 -0800
committerPaul Eggert2018-02-01 09:11:25 -0800
commitc85d9e401a686637284752a0eadc52f7a6b439d7 (patch)
tree079068fe6f9070c9febba33d09f6ba3b117050e5
parentb2127c631ed5b3156f73e74dc71e29b85b34b133 (diff)
downloademacs-c85d9e401a686637284752a0eadc52f7a6b439d7.tar.gz
emacs-c85d9e401a686637284752a0eadc52f7a6b439d7.zip
* src/xfns.c: Make some non-exported vars static.
-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