From bbc58feac57d070a3b645b7a132ee3f3624b6ddd Mon Sep 17 00:00:00 2001 From: Ken Brown Date: Wed, 22 Jun 2016 10:04:44 -0400 Subject: [PATCH] Avoid compiler warning MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit * src/w32fns.c (Fx_show_tip): Don’t jump over auto initialization. --- src/w32fns.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/w32fns.c b/src/w32fns.c index 02bd4d55942..5ad2ca857a2 100644 --- a/src/w32fns.c +++ b/src/w32fns.c @@ -6898,6 +6898,7 @@ Text larger than the specified size is clipped. */) ptrdiff_t count = SPECPDL_INDEX (); ptrdiff_t count_1; Lisp_Object window, size; + AUTO_STRING (tip, " *tip*"); specbind (Qinhibit_redisplay, Qt); @@ -7054,7 +7055,6 @@ Text larger than the specified size is clipped. */) tip_f = XFRAME (tip_frame); window = FRAME_ROOT_WINDOW (tip_f); - AUTO_STRING (tip, " *tip*"); set_window_buffer (window, Fget_buffer_create (tip), false, false); w = XWINDOW (window); w->pseudo_window_p = true; -- 2.39.2