From 4c08371a0461a350861d645e79e959da41b0437c Mon Sep 17 00:00:00 2001 From: YAMAMOTO Mitsuharu Date: Sat, 25 Mar 2006 07:40:18 +0000 Subject: [PATCH] (select-frame-by-name): 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 8437475dfd6..d041da254f5 100644 --- a/lisp/frame.el +++ b/lisp/frame.el @@ -767,7 +767,7 @@ If there is no frame by that name, signal an error." (raise-frame frame) (select-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