From 3c5876d2688c5df8ec16047da75dac9ab7145338 Mon Sep 17 00:00:00 2001 From: YAMAMOTO Mitsuharu Date: Fri, 10 Feb 2006 08:19:36 +0000 Subject: [PATCH] (select-frame-set-input-focus): Call x-focus-frame also when window-system is mac. --- lisp/frame.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/frame.el b/lisp/frame.el index 5e6451dccac..8437475dfd6 100644 --- a/lisp/frame.el +++ b/lisp/frame.el @@ -695,7 +695,7 @@ automatically." (select-frame frame) (raise-frame frame) ;; Ensure, if possible, that frame gets input focus. - (cond ((eq window-system 'x) + (cond ((memq window-system '(x mac)) (x-focus-frame frame)) ((eq window-system 'w32) (w32-focus-frame frame))) -- 2.39.2