From: Po Lu Date: Tue, 18 Jan 2022 07:56:08 +0000 (+0800) Subject: * lisp/tooltip.el (tooltip-show-help): Fix typo. X-Git-Tag: emacs-29.0.90~2976 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=c99e28207a69e6d4305be25ac420ffa664924652;p=emacs.git * lisp/tooltip.el (tooltip-show-help): Fix typo. --- diff --git a/lisp/tooltip.el b/lisp/tooltip.el index a6392877144..2aa487d0454 100644 --- a/lisp/tooltip.el +++ b/lisp/tooltip.el @@ -378,8 +378,8 @@ MSG is either a help string to display, or nil to cancel the display." (if (and (display-graphic-p) ;; On Haiku, system tooltips can't be displayed above ;; menus. - (or (not (and haiku-use-system-tooltips - (eq window-system 'haiku))) + (or (not (and (eq window-system 'haiku) + haiku-use-system-tooltips)) (not (menu-or-popup-active-p)))) (let ((previous-help tooltip-help-message)) (setq tooltip-help-message msg)