]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix compilation after recent x-show-tooltip-timeout changes
authorLars Ingebrigtsen <larsi@gnus.org>
Sat, 30 Apr 2022 16:20:19 +0000 (18:20 +0200)
committerLars Ingebrigtsen <larsi@gnus.org>
Sat, 30 Apr 2022 16:20:19 +0000 (18:20 +0200)
* src/dispnew.c (syms_of_display): Move x-show-tooltip-timeout to
a common file to avoid breaking other systems.

src/dispnew.c
src/xfns.c

index 2aba0edfe8ff40533f9b7e7354c37bb0f795eb44..1dd64be4ead0e4d975928757f85751dceb7eb2dd 100644 (file)
@@ -6721,6 +6721,10 @@ See `buffer-display-table' for more information.  */);
      beginning of the next redisplay).  */
   redisplay_dont_pause = true;
 
+  DEFVAR_LISP ("x-show-tooltip-timeout", Vx_show_tooltip_timeout,
+             doc: /* The default timeout (in seconds) for `x-show-tip'.  */);
+  Vx_show_tooltip_timeout = make_fixnum (5);
+
   DEFVAR_LISP ("tab-bar-position", Vtab_bar_position,
               doc: /* Specify on which side from the tool bar the tab bar shall be.
 Possible values are t (below the tool bar), nil (above the tool bar).
index 8f17ee67cd0b6dfd2250d6f31f2b5d9ea018f99f..06a0d4728cfac606b6eab98660c877c3af4f96b9 100644 (file)
@@ -9727,10 +9727,6 @@ eliminated in future versions of Emacs.  */);
   }
 #endif
 
-  DEFVAR_LISP ("x-show-tooltip-timeout", Vx_show_tooltip_timeout,
-             doc: /* The default timeout (in seconds) for `x-show-tip'.  */);
-  Vx_show_tooltip_timeout = make_fixnum (5);
-
   /* X window properties.  */
   defsubr (&Sx_change_window_property);
   defsubr (&Sx_delete_window_property);