From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Katsumi Yamaoka Newsgroups: gmane.emacs.devel Subject: Re: Make raise-frame work on Cygwin Date: Thu, 17 May 2012 20:42:30 +0900 Organization: Emacsen advocacy group Message-ID: References: NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: dough.gmane.org 1337254981 7302 80.91.229.3 (17 May 2012 11:43:01 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Thu, 17 May 2012 11:43:01 +0000 (UTC) To: emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Thu May 17 13:43:00 2012 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1SUz6h-0004aP-8i for ged-emacs-devel@m.gmane.org; Thu, 17 May 2012 13:42:59 +0200 Original-Received: from localhost ([::1]:46721 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SUz6g-0006Ec-Me for ged-emacs-devel@m.gmane.org; Thu, 17 May 2012 07:42:58 -0400 Original-Received: from eggs.gnu.org ([208.118.235.92]:35482) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SUz6d-00066L-6s for emacs-devel@gnu.org; Thu, 17 May 2012 07:42:56 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1SUz6Y-0004ub-CO for emacs-devel@gnu.org; Thu, 17 May 2012 07:42:54 -0400 Original-Received: from orlando.hostforweb.net ([216.246.45.90]:36656) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SUz6Y-0004tr-8V for emacs-devel@gnu.org; Thu, 17 May 2012 07:42:50 -0400 Original-Received: from localhost ([127.0.0.1]:53694) by orlando.hostforweb.net with smtp (Exim 4.77) (envelope-from ) id 1SUz6U-0002gM-0u for emacs-devel@gnu.org; Thu, 17 May 2012 06:42:46 -0500 X-Face: #kKnN,xUnmKia.'[pp`; Omh}odZK)?7wQSl"4o04=EixTF+V[""w~iNbM9ZL+.b*_CxUmFk B#Fu[*?MZZH@IkN:!"\w%I_zt>[$nm7nQosZ<3eu; B:$Q_:p!',P.c0-_Cy[dz4oIpw0ESA^D*1Lw= L&i*6&( User-Agent: Gnus/5.130006 (=?iso-2022-jp?B?GyRCPz8bKEI=?= Gnus v0.6) Emacs/24.1.50 (i686-pc-cygwin) Cancel-Lock: sha1:GrVAaPzicEGGaEEf1gFH4pc8xjY= X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - orlando.hostforweb.net X-AntiAbuse: Original Domain - gnu.org X-AntiAbuse: Originator/Caller UID/GID - [47 12] / [47 12] X-AntiAbuse: Sender Address Domain - jpl.org X-Source: X-Source-Args: X-Source-Dir: X-detected-operating-system: by eggs.gnu.org: Linux 2.6? (barebone, rare!) X-Received-From: 216.246.45.90 X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:150543 Archived-At: Katsumi Yamaoka wrote: >> (defadvice raise-frame (before make-it-work (&optional frame) activate) >> "Make it work on Cygwin." >> (when frame (make-frame-invisible frame))) > Some program tries to raise the selected frame even if it is > the sole one, so this should be turned into: > (defadvice raise-frame (before make-it-work (&optional frame) activate) > "Make it work on Cygwin." > (when (and frame (not (eq frame (selected-frame)))) > (make-frame-invisible frame))) Sorry for the noises. Here is the third time lucky: (defadvice raise-frame (before make-it-work (&optional frame) activate) "Make it work on Cygwin." (when (and frame (cdr (frame-list))) (make-frame-invisible frame))) This works with `select-frame-set-input-focus'.