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: [display-buffer] a way to make it behave as before? Date: Thu, 23 Jun 2011 11:48:54 +0200 Message-ID: <4E030C06.2070503@gmx.at> References: <4DFB7705.2000401@gmx.at> <4DFF1223.5030100@gmx.at> <4DFF3BA8.3070007@gmx.at> <4E00C2C8.6040303@gmx.at> <4E0197B3.1080509@gmx.at> <4E01F1F6.2060705@gmx.at> 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 1308822566 26349 80.91.229.12 (23 Jun 2011 09:49:26 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Thu, 23 Jun 2011 09:49:26 +0000 (UTC) Cc: emacs-devel@gnu.org To: Katsumi Yamaoka Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Thu Jun 23 11:49:21 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 1QZgXI-0001EK-S0 for ged-emacs-devel@m.gmane.org; Thu, 23 Jun 2011 11:49:21 +0200 Original-Received: from localhost ([::1]:35430 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QZgXH-0007ck-GL for ged-emacs-devel@m.gmane.org; Thu, 23 Jun 2011 05:49:19 -0400 Original-Received: from eggs.gnu.org ([140.186.70.92]:45392) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QZgWw-0007c7-Pb for emacs-devel@gnu.org; Thu, 23 Jun 2011 05:48:59 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1QZgWv-00026q-HE for emacs-devel@gnu.org; Thu, 23 Jun 2011 05:48:58 -0400 Original-Received: from mailout-de.gmx.net ([213.165.64.22]:53920) by eggs.gnu.org with smtp (Exim 4.71) (envelope-from ) id 1QZgWu-00026k-Tk for emacs-devel@gnu.org; Thu, 23 Jun 2011 05:48:57 -0400 Original-Received: (qmail invoked by alias); 23 Jun 2011 09:48:55 -0000 Original-Received: from 62-47-51-139.adsl.highway.telekom.at (EHLO [62.47.51.139]) [62.47.51.139] by mail.gmx.net (mp014) with SMTP; 23 Jun 2011 11:48:55 +0200 X-Authenticated: #14592706 X-Provags-ID: V01U2FsdGVkX19rGwsW0sxra2hVelhmNTJgYbk3FLcqmxxmWH4G0N WSdtDwFEpnx2Kf User-Agent: Thunderbird 2.0.0.21 (Windows/20090302) In-Reply-To: X-Y-GMX-Trusted: 0 X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 213.165.64.22 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:140910 Archived-At: > At last I realized that my misunderstanding was due to > an abnormal default behavior. I got Emacs that works never funny now. Could you please send us the corresponding default value for `display-buffer-alist'? That is the thing that "never works funny" for you written as a Lisp expression we would then use right here: (defcustom display-buffer-alist '((((regexp . ".*")) ;; Reuse window showing same buffer on same frame. reuse-window (reuse-window nil same nil) ;; Pop up window. pop-up-window ;; Split largest or lru window. (pop-up-window (largest . nil) (lru . nil)) (pop-up-window-min-height . 40) ; split-height-threshold / 2 (pop-up-window-min-width . 80) ; split-width-threshold / 2 ;; Reuse any but selected window on same frame. reuse-window (reuse-window other nil nil) (reuse-window-even-sizes . t))) Thanks, martin