From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: martin rudalics Newsgroups: gmane.emacs.devel Subject: Re: Frame ordering Date: Fri, 11 Jun 2010 15:22:17 +0200 Message-ID: <4C123889.5060801@gmx.at> References: <8F18E079-3351-4398-B76B-6CF9169ACE9E@gmail.com> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Trace: dough.gmane.org 1276263792 15884 80.91.229.12 (11 Jun 2010 13:43:12 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Fri, 11 Jun 2010 13:43:12 +0000 (UTC) Cc: Emacs-Devel devel To: David Reitter Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Fri Jun 11 15:43:10 2010 connect(): No such file or directory Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1ON4Vi-0003S0-N8 for ged-emacs-devel@m.gmane.org; Fri, 11 Jun 2010 15:43:07 +0200 Original-Received: from localhost ([127.0.0.1]:46632 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1ON4D2-0006kb-JG for ged-emacs-devel@m.gmane.org; Fri, 11 Jun 2010 09:23:44 -0400 Original-Received: from [140.186.70.92] (port=49554 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1ON4Bk-0006A4-MG for emacs-devel@gnu.org; Fri, 11 Jun 2010 09:22:27 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1ON4Bi-00086W-1i for emacs-devel@gnu.org; Fri, 11 Jun 2010 09:22:24 -0400 Original-Received: from mail.gmx.net ([213.165.64.20]:51257) by eggs.gnu.org with smtp (Exim 4.69) (envelope-from ) id 1ON4Bh-00086F-LK for emacs-devel@gnu.org; Fri, 11 Jun 2010 09:22:22 -0400 Original-Received: (qmail invoked by alias); 11 Jun 2010 13:22:19 -0000 Original-Received: from 62-47-33-63.adsl.highway.telekom.at (EHLO [62.47.33.63]) [62.47.33.63] by mail.gmx.net (mp004) with SMTP; 11 Jun 2010 15:22:19 +0200 X-Authenticated: #14592706 X-Provags-ID: V01U2FsdGVkX19LOe13JjZL7QHzk5hzj7hvwdv1KwMIbY0Ix5ti7E va7kIdvGCYUHkP User-Agent: Thunderbird 2.0.0.21 (Windows/20090302) In-Reply-To: <8F18E079-3351-4398-B76B-6CF9169ACE9E@gmail.com> X-Y-GMX-Trusted: 0 X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:125730 Archived-At: > So, I've experimented with simply moving the frame to the end of Vframe_list in do_switch_frame: Why do you want to do this in do_switch_frame? > > if (XINT (Flength (Vframe_list)) > 1) > { > Vframe_list = Fdelete (frame, Vframe_list); > Vframe_list = nconc2 (Vframe_list, tem); > } What is tem and what is its cdr? martin