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: Make raise-frame work on Cygwin Date: Thu, 17 May 2012 08:44:48 +0900 Organization: Emacsen advocacy group Message-ID: NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: dough.gmane.org 1337211904 14866 80.91.229.3 (16 May 2012 23:45:04 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Wed, 16 May 2012 23:45:04 +0000 (UTC) To: emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Thu May 17 01:45:03 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 1SUntu-0008QH-UY for ged-emacs-devel@m.gmane.org; Thu, 17 May 2012 01:45:03 +0200 Original-Received: from localhost ([::1]:52798 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SUntu-0008Bh-87 for ged-emacs-devel@m.gmane.org; Wed, 16 May 2012 19:45:02 -0400 Original-Received: from eggs.gnu.org ([208.118.235.92]:40738) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SUntq-0008BP-JP for emacs-devel@gnu.org; Wed, 16 May 2012 19:44:59 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1SUnto-0005Zd-Ql for emacs-devel@gnu.org; Wed, 16 May 2012 19:44:58 -0400 Original-Received: from orlando.hostforweb.net ([216.246.45.90]:56310) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SUnto-0005Yn-N6 for emacs-devel@gnu.org; Wed, 16 May 2012 19:44:56 -0400 Original-Received: from localhost ([127.0.0.1]:42987) by orlando.hostforweb.net with smtp (Exim 4.77) (envelope-from ) id 1SUntk-0005yW-Qo for emacs-devel@gnu.org; Wed, 16 May 2012 18:44:53 -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:1IOCYuGgceQV641G8BYoM8MnjV0= 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:150533 Archived-At: Hi, raise-frame doesn't pop up an existing frame on Cygwin (rootless). If there are many frames on a Windows screen, we have no means to pop up a certain Emacs frame that is hidden by the other frames, except for manually digging it up by mouse. But at last I found a workaround: (defadvice raise-frame (before make-it-work (&optional frame) activate) "Make it work on Cygwin." (when frame (make-frame-invisible frame))) iconify-frame instead of make-frame-invisible there has no effect. It also revealed that some ELisp applications call raise-frame two or more times at a time since a raised frame blinks. ;-) BTW, I still use wmctrl on Fedora: http://lists.gnu.org/archive/html/emacs-devel/2006-10/msg01117.html