From c99e28207a69e6d4305be25ac420ffa664924652 Mon Sep 17 00:00:00 2001 From: Po Lu Date: Tue, 18 Jan 2022 15:56:08 +0800 Subject: [PATCH] * lisp/tooltip.el (tooltip-show-help): Fix typo. --- lisp/tooltip.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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) -- 2.39.2