From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Carlos Konstanski Newsgroups: gmane.emacs.help Subject: Re: list-buffers behavior customization Date: Fri, 6 May 2016 13:29:08 -0600 Message-ID: References: <0a105aa5-9ad2-354b-d113-9df6b6561834@pippiandcarlos.com> <87zis4gm39.fsf@web.de> <54181356-352e-821e-2685-ede49a7e47ad@pippiandcarlos.com> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Trace: ger.gmane.org 1462562949 4833 80.91.229.3 (6 May 2016 19:29:09 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Fri, 6 May 2016 19:29:09 +0000 (UTC) To: help-gnu-emacs@gnu.org Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Fri May 06 21:28:59 2016 Return-path: Envelope-to: geh-help-gnu-emacs@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 1aylQo-0003Wa-Sy for geh-help-gnu-emacs@m.gmane.org; Fri, 06 May 2016 21:28:59 +0200 Original-Received: from localhost ([::1]:59963 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aylQk-0007BF-PH for geh-help-gnu-emacs@m.gmane.org; Fri, 06 May 2016 15:28:54 -0400 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:57044) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aylQV-0006xB-0d for help-gnu-emacs@gnu.org; Fri, 06 May 2016 15:28:45 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1aylQJ-00016Y-JL for help-gnu-emacs@gnu.org; Fri, 06 May 2016 15:28:33 -0400 Original-Received: from [63.228.66.31] (port=3053 helo=mail.pippiandcarlos.com) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aylQI-00014j-A9 for help-gnu-emacs@gnu.org; Fri, 06 May 2016 15:28:27 -0400 Original-Received: from localhost (localhost [127.0.0.1]) by localhost (Postfix) with ESMTP id 687B01895953 for ; Fri, 6 May 2016 13:28:16 -0600 (MDT) Original-Received: from mail.pippiandcarlos.com ([127.0.0.1]) by localhost (mail.pippiandcarlos.com [127.0.0.1]) (amavisd-new, port 10026) with ESMTP id m11HXW7tAaIh for ; Fri, 6 May 2016 13:28:16 -0600 (MDT) Original-Received: from [172.16.120.128] (c-73-95-8-72.hsd1.co.comcast.net [73.95.8.72]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by mail.pippiandcarlos.com (Postfix) with ESMTPSA id 98B3B18958F3 for ; Fri, 6 May 2016 13:28:15 -0600 (MDT) DKIM-Filter: OpenDKIM Filter v2.10.3 mail.pippiandcarlos.com 98B3B18958F3 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=pippiandcarlos.com; s=pippiandcarlos.com.private; t=1462562895; bh=iUi5RS66cILcqjwgYHL+d6c4UPNtwlxuoYpYklgivX8=; h=Subject:To:References:From:Date:In-Reply-To; b=Rg7zqXAaYNYGxhEPmAtV5ltzurIj/x8kkyXMFHTxWjEflNn6nrUCgzAsDgcoUzQM9 F2EvfJ+hyKPGfYP3MP1EDRiE/F8+skXVQYPDRtzh1ic8f9VDCSGlRNU1YauRK2Qmu1 N9FZVty0NUVDx8G3GXmag1dHC3fREbcj1JJ+Qm24= User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:45.0) Gecko/20100101 Thunderbird/45.0 In-Reply-To: X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Received-From: 63.228.66.31 X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Original-Sender: "help-gnu-emacs" Xref: news.gmane.org gmane.emacs.help:109894 Archived-At: Am 06.05.2016 um 13:18 schrieb Stefan Monnier: >> Thanks! This solution works: > >> '(display-buffer-alist >> (quote >> (("*Buffer*" display-buffer-same-window >> (allow-no-window . t))))) > > I assume you mean > > (setq display-buffer-alist > '(("*Buffer*" display-buffer-same-window > (allow-no-window . t)))) > > because the code you quoted above does nothing at all in itself (it's > just a constant list, not a command/instruction). > > > Stefan I copied and pasted from .emacs after using the customize-variable doohickey within emacs. This felt like the right way to customize this variable. Carlos