From: YAMAMOTO Mitsuharu Date: Fri, 10 Feb 2006 08:19:36 +0000 (+0000) Subject: (select-frame-set-input-focus): Call x-focus-frame also X-Git-Tag: emacs-pretest-22.0.90~4242 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=3c5876d2688c5df8ec16047da75dac9ab7145338;p=emacs.git (select-frame-set-input-focus): Call x-focus-frame also when window-system is mac. --- 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)))