From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: "Drew Adams" Newsgroups: gmane.emacs.devel Subject: RE: Buffer listing in multiple frames/ttys Date: Tue, 6 Dec 2005 08:20:27 -0800 Message-ID: References: NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable X-Trace: sea.gmane.org 1133886404 22927 80.91.229.2 (6 Dec 2005 16:26:44 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Tue, 6 Dec 2005 16:26:44 +0000 (UTC) Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Tue Dec 06 17:26:43 2005 Return-path: Original-Received: from lists.gnu.org ([199.232.76.165]) by ciao.gmane.org with esmtp (Exim 4.43) id 1EjfZF-0002KN-4X for ged-emacs-devel@m.gmane.org; Tue, 06 Dec 2005 17:21:25 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1EjfZQ-0002Ig-UO for ged-emacs-devel@m.gmane.org; Tue, 06 Dec 2005 11:21:37 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1EjfYr-0002DI-Gz for emacs-devel@gnu.org; Tue, 06 Dec 2005 11:21:01 -0500 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1EjfYh-0002Bc-0f for emacs-devel@gnu.org; Tue, 06 Dec 2005 11:21:00 -0500 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1EjfYg-0002BX-PF for emacs-devel@gnu.org; Tue, 06 Dec 2005 11:20:50 -0500 Original-Received: from [148.87.122.30] (helo=rgminet01.oracle.com) by monty-python.gnu.org with esmtp (TLS-1.0:DHE_RSA_3DES_EDE_CBC_SHA:24) (Exim 4.34) id 1EjfZN-0000sa-0R for emacs-devel@gnu.org; Tue, 06 Dec 2005 11:21:33 -0500 Original-Received: from rgmsgw300.us.oracle.com (rgmsgw300.us.oracle.com [138.1.186.49]) by rgminet01.oracle.com (Switch-3.1.6/Switch-3.1.6) with ESMTP id jB6GKT8J032060 for ; Tue, 6 Dec 2005 09:20:29 -0700 Original-Received: from rgmsgw300.us.oracle.com (localhost [127.0.0.1]) by rgmsgw300.us.oracle.com (Switch-3.1.7/Switch-3.1.7) with ESMTP id jB6GKSDO029362 for ; Tue, 6 Dec 2005 09:20:28 -0700 Original-Received: from dradamslap (dhcp-amer-rmdc-csvpn-gw5-141-144-107-1.vpn.oracle.com [141.144.107.1]) by rgmsgw300.us.oracle.com (Switch-3.1.7/Switch-3.1.7) with SMTP id jB6GKRXf029344 (version=TLSv1/SSLv3 cipher=RC4-MD5 bits=128 verify=NO) for ; Tue, 6 Dec 2005 09:20:28 -0700 Original-To: X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.6604 (9.0.2911.0) In-reply-to: X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1506 Importance: Normal X-Brightmail-Tracker: AAAAAQAAAAI= X-Whitelist: TRUE 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:47050 Archived-At: The following definitions change `prev-buffer' and `next-buffer' to follow the frame-local buffer ordering instead of the global `buffer-list'. =20 Now, I like these definitions as it makes more sense for me to keep the buffer cycle frame-local, but they do have one disadvantage: the `next-buffer'/`prev-buffer' cycle will not usually contain all buffers---just those that were displayed in the current frame. To reach the rest, the user needs to use `switch-to-buffer', or equivalent. =20 I may have misunderstood (I have not been following the latest part of = this thread closely), but IIUC this would, for the same reasons = discussed earlier, be inappropriate for many of us who use pop-up-frames = =3D t.=20 I don't really care, for myself, as I am unlikely to use = next-buffer/prev-buffer, but I think it could be important for others = who do want to use those commands with the = one-buffer-per-frame-by-default behavior of pop-up-frames =3D t.