From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Pascal Bourguignon Newsgroups: gmane.emacs.help Subject: Re: defun not working Date: Mon, 18 Jul 2005 23:41:05 +0200 Organization: [posted via Easynet Spain] Message-ID: <87oe8zdc7i.fsf@thalassa.informatimago.com> References: <42dbf89e$1_1@news.iprimus.com.au> NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: sea.gmane.org 1121723049 22336 80.91.229.2 (18 Jul 2005 21:44:09 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Mon, 18 Jul 2005 21:44:09 +0000 (UTC) Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Mon Jul 18 23:44:04 2005 Return-path: Original-Received: from lists.gnu.org ([199.232.76.165]) by ciao.gmane.org with esmtp (Exim 4.43) id 1DudOP-0005Oz-EW for geh-help-gnu-emacs@m.gmane.org; Mon, 18 Jul 2005 23:43:17 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1DudQM-0002Z8-8P for geh-help-gnu-emacs@m.gmane.org; Mon, 18 Jul 2005 17:45:18 -0400 Original-Path: shelby.stanford.edu!newsfeed.stanford.edu!logbridge.uoregon.edu!news-FFM2.ecrc.net!news.m-online.net!newsfeed.stueberl.de!proxad.net!proxad.net!easynet-quince!easynet.net!easynet-post2!not-for-mail Original-Newsgroups: gnu.emacs.help User-Agent: Gnus/5.11 (Gnus v5.11) Emacs/22.0.50 (gnu/linux) Cancel-Lock: sha1:gWisydSdEf/C1uDc1qVQSHipPOs= Original-Lines: 29 Original-NNTP-Posting-Host: 62.93.174.79 Original-X-Trace: DXC=Q=0<8\0DK\FATMVY_Z<3@@EW@M2bjd]fEbBd4DjF1d]A Original-Xref: shelby.stanford.edu gnu.emacs.help:132486 Original-To: help-gnu-emacs@gnu.org X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.help:27999 X-Report-Spam: http://spam.gmane.org/gmane.emacs.help:27999 Baloff writes: > Hello > I have this in my ~/.emacs > > (defun edo-vertical-to-horizontal () > (interactive) > (let ((one-buf (window-buffer (selected-window)))) > (other-window 1) > (delete-other-window) > (split-window-horizontally) > (switch-to-buffer one-buf)) > > upone M-x edo-vertical-to-horizontal > it actually do horizontal to vertical which is the opposite to what it > is suppost to do. it was working good last time I used it which was a > year or so ago, I since upgraded my debain. > > not sure why it would do this. Because that's the way it is: split-window-horizontally splits vertical windows and split-window-vertically splits horizontal windows. -- __Pascal Bourguignon__ http://www.informatimago.com/ Until real software engineering is developed, the next best practice is to develop with a dynamic system that has extreme late binding in all aspects. The first system to really do this in an important way is Lisp. -- Alan Kay