diff options
| author | Paul Eggert | 2018-02-01 09:10:55 -0800 |
|---|---|---|
| committer | Paul Eggert | 2018-02-01 09:11:25 -0800 |
| commit | c85d9e401a686637284752a0eadc52f7a6b439d7 (patch) | |
| tree | 079068fe6f9070c9febba33d09f6ba3b117050e5 | |
| parent | b2127c631ed5b3156f73e74dc71e29b85b34b133 (diff) | |
| download | emacs-c85d9e401a686637284752a0eadc52f7a6b439d7.tar.gz emacs-c85d9e401a686637284752a0eadc52f7a6b439d7.zip | |
* src/xfns.c: Make some non-exported vars static.
| -rw-r--r-- | src/xfns.c | 10 |
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. */ |
| 6067 | Lisp_Object tip_frame; | 6067 | static 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. */ |
| 6075 | Lisp_Object tip_timer; | 6075 | static Lisp_Object tip_timer; |
| 6076 | 6076 | ||
| 6077 | /* STRING argument of last `x-show-tip' call. */ | 6077 | /* STRING argument of last `x-show-tip' call. */ |
| 6078 | Lisp_Object tip_last_string; | 6078 | static 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. */ |
| 6081 | Lisp_Object tip_last_frame; | 6081 | static 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. */ |
| 6084 | Lisp_Object tip_last_parms; | 6084 | static Lisp_Object tip_last_parms; |
| 6085 | 6085 | ||
| 6086 | 6086 | ||
| 6087 | static void | 6087 | static void |