From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: David Hansen Newsgroups: gmane.emacs.devel Subject: `split-window-preferred-horizontally' Date: Fri, 06 Jun 2008 21:44:20 +0200 Organization: disorganized Message-ID: <87k5h28i23.fsf@localhorst.mine.nu> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: ger.gmane.org 1212782023 21919 80.91.229.12 (6 Jun 2008 19:53:43 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Fri, 6 Jun 2008 19:53:43 +0000 (UTC) To: emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Fri Jun 06 21:54:26 2008 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.50) id 1K4i12-0007Ql-8M for ged-emacs-devel@m.gmane.org; Fri, 06 Jun 2008 21:54:24 +0200 Original-Received: from localhost ([127.0.0.1]:56838 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1K4i0F-00009W-Eg for ged-emacs-devel@m.gmane.org; Fri, 06 Jun 2008 15:53:35 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1K4i0B-00009R-Uv for emacs-devel@gnu.org; Fri, 06 Jun 2008 15:53:31 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1K4i07-00009C-AL for emacs-devel@gnu.org; Fri, 06 Jun 2008 15:53:30 -0400 Original-Received: from [199.232.76.173] (port=55660 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1K4i07-000099-5X for emacs-devel@gnu.org; Fri, 06 Jun 2008 15:53:27 -0400 Original-Received: from main.gmane.org ([80.91.229.2]:59665 helo=ciao.gmane.org) by monty-python.gnu.org with esmtps (TLS-1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1K4i06-0001C4-NB for emacs-devel@gnu.org; Fri, 06 Jun 2008 15:53:26 -0400 Original-Received: from list by ciao.gmane.org with local (Exim 4.43) id 1K4i00-0005HS-Eb for emacs-devel@gnu.org; Fri, 06 Jun 2008 19:53:21 +0000 Original-Received: from e178059063.adsl.alicedsl.de ([85.178.59.63]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Fri, 06 Jun 2008 19:53:20 +0000 Original-Received: from david.hansen by e178059063.adsl.alicedsl.de with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Fri, 06 Jun 2008 19:53:20 +0000 X-Injected-Via-Gmane: http://gmane.org/ Mail-Followup-To: emacs-devel@gnu.org Original-Lines: 19 Original-X-Complaints-To: usenet@ger.gmane.org X-Gmane-NNTP-Posting-Host: e178059063.adsl.alicedsl.de Mail-Copies-To: nobody User-Agent: Gnus/5.110011 (No Gnus v0.11) Emacs/23.0.60 (gnu/linux) Cancel-Lock: sha1:XyoCMv7T69NN2rDQzYuvQw1XpAk= X-detected-kernel: by monty-python.gnu.org: Linux 2.6, seldom 2.4 (older, 4) 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:98538 Archived-At: Hello, why was `split-window-preferred-horizontally' removed? It did exactly what I wanted. How am i supposed to get the old behavior back? I had (setq split-window-preferred-function #'(lambda (window) (when (>= (frame-width) 160) (split-window-preferred-horizontally window)))) In my ~/.emacs. Right now I'm trying (setq split-window-preferred-function 'sensibly) But it behaves pretty weird. E.g in a huge frame split once horizontally `iswitchb-buffer-other-window' chooses the same window, as does C-h k (IMHO these are bugs). David