From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Juanma Barranquero Newsgroups: gmane.emacs.devel Subject: Re: switch-to-buffer: for interactive use only Date: Wed, 6 Jul 2011 01:41:11 +0200 Message-ID: References: <0aiprg76eu.fsf@fencepost.gnu.org> <3k8vsc9udo.fsf@fencepost.gnu.org> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable X-Trace: dough.gmane.org 1309909621 8206 80.91.229.12 (5 Jul 2011 23:47:01 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Tue, 5 Jul 2011 23:47:01 +0000 (UTC) Cc: emacs-devel@gnu.org To: Glenn Morris Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Wed Jul 06 01:46:57 2011 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([140.186.70.17]) by lo.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1QeFKT-0006JK-Jg for ged-emacs-devel@m.gmane.org; Wed, 06 Jul 2011 01:46:57 +0200 Original-Received: from localhost ([::1]:34032 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QeFKS-00015E-8d for ged-emacs-devel@m.gmane.org; Tue, 05 Jul 2011 19:46:56 -0400 Original-Received: from eggs.gnu.org ([140.186.70.92]:45887) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QeFFc-0000FL-KM for emacs-devel@gnu.org; Tue, 05 Jul 2011 19:41:57 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1QeFFb-0003mC-6t for emacs-devel@gnu.org; Tue, 05 Jul 2011 19:41:56 -0400 Original-Received: from mail-pz0-f41.google.com ([209.85.210.41]:57858) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QeFFY-0003ln-JG; Tue, 05 Jul 2011 19:41:52 -0400 Original-Received: by pzk4 with SMTP id 4so3161293pzk.0 for ; Tue, 05 Jul 2011 16:41:51 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:from:date:message-id:subject:to :cc:content-type:content-transfer-encoding; bh=8WPd5yuGxbEUm1NSlE/m37OWAVo+66QEhPkbwK4vu6A=; b=OJnbIbQaym1cHMYbnzTWIPhNX9fBUdzdxxoR6rgK751gW/0j5UzhKUsQm3gBvpziqS g+5TuhZ58Qh6XYsMENYxwfz73fhkMD+Y6pmur2r1aPR6ERlNY/tixBvn/THuavws4+av GpGKIaCl3A/p9RHE1n98109LoiEkSBRYhcnoM= Original-Received: by 10.142.255.18 with SMTP id c18mr215332wfi.24.1309909311099; Tue, 05 Jul 2011 16:41:51 -0700 (PDT) Original-Received: by 10.142.144.4 with HTTP; Tue, 5 Jul 2011 16:41:11 -0700 (PDT) In-Reply-To: <3k8vsc9udo.fsf@fencepost.gnu.org> X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6 (newer, 2) X-Received-From: 209.85.210.41 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:141625 Archived-At: On Wed, Jul 6, 2011 at 01:32, Glenn Morris wrote: > (I knew the first comment would be something along > these lines.) But, seriously, IIUC the intent of Martin's changes, one of the goals is to help differentiate between user commands and elisp functions; packages should use functions that express the intent of the code, and make use of the SPECIFIERS and LABEL args to indicate any non-standard behavior (that the user can override with display-buffer-alist). I don't find hard to believe than in many of these 471 cases, what the code pretends is more akin to `pop-to-buffer-same-window' than to `switch-to-buffer'. =C2=A0 =C2=A0 Juanma