From: Ken Brown Date: Wed, 22 Jun 2016 14:04:44 +0000 (-0400) Subject: Avoid compiler warning X-Git-Tag: emacs-26.0.90~1840^2~193 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=bbc58feac57d070a3b645b7a132ee3f3624b6ddd;p=emacs.git Avoid compiler warning * src/w32fns.c (Fx_show_tip): Don’t jump over auto initialization. --- 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;