From aaef169dc63c4b557374540756865991e1bf6305 Mon Sep 17 00:00:00 2001 From: Thien-Thi Nguyen Date: Mon, 6 Feb 2006 15:23:23 +0000 Subject: Update years in copyright notice; nfc. --- lisp/frame.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lisp/frame.el') diff --git a/lisp/frame.el b/lisp/frame.el index 34f96a309a2..5e6451dccac 100644 --- a/lisp/frame.el +++ b/lisp/frame.el @@ -1,7 +1,7 @@ ;;; frame.el --- multi-frame management independent of window systems ;; Copyright (C) 1993, 1994, 1996, 1997, 2000, 2001, 2002, 2003, -;; 2004, 2005 Free Software Foundation, Inc. +;; 2004, 2005, 2006 Free Software Foundation, Inc. ;; Maintainer: FSF ;; Keywords: internal -- cgit v1.2.1 From 3c5876d2688c5df8ec16047da75dac9ab7145338 Mon Sep 17 00:00:00 2001 From: YAMAMOTO Mitsuharu Date: Fri, 10 Feb 2006 08:19:36 +0000 Subject: (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(-) (limited to 'lisp/frame.el') 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))) -- cgit v1.2.1