From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: Lars Hansen Newsgroups: gmane.emacs.devel Subject: Re: dired alignment hacks Date: Mon, 15 Nov 2004 08:40:01 +0100 Message-ID: <41985D51.90604@math.ku.dk> References: <419780FB.9050806@math.ku.dk> <87vfc82q53.fsf-monnier+emacs@gnu.org> <4197CC75.1030500@math.ku.dk> <873bzc2jeu.fsf-monnier+emacs@gnu.org> <4197DAE1.6030405@math.ku.dk> NNTP-Posting-Host: deer.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Trace: sea.gmane.org 1100504460 10503 80.91.229.6 (15 Nov 2004 07:41:00 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Mon, 15 Nov 2004 07:41:00 +0000 (UTC) Cc: emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Mon Nov 15 08:40:52 2004 Return-path: Original-Received: from lists.gnu.org ([199.232.76.165]) by deer.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 1CTbTn-00063I-00 for ; Mon, 15 Nov 2004 08:40:51 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.33) id 1CTbcT-0005rm-Ig for ged-emacs-devel@m.gmane.org; Mon, 15 Nov 2004 02:49:49 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.33) id 1CTbcM-0005rD-7g for emacs-devel@gnu.org; Mon, 15 Nov 2004 02:49:42 -0500 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.33) id 1CTbcL-0005qm-2H for emacs-devel@gnu.org; Mon, 15 Nov 2004 02:49:41 -0500 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.33) id 1CTbcK-0005qj-VY for emacs-devel@gnu.org; Mon, 15 Nov 2004 02:49:41 -0500 Original-Received: from [213.170.224.162] (helo=smtp.kabelnettet.dk) by monty-python.gnu.org with esmtp (Exim 4.34) id 1CTbT0-0003A7-8l for emacs-devel@gnu.org; Mon, 15 Nov 2004 02:40:02 -0500 Original-Received: from math.ku.dk (pppoe1-ves.broadcom.dk [212.99.255.40]) by smtp.kabelnettet.dk (Postfix) with ESMTP id 116FB609847; Mon, 15 Nov 2004 08:40:01 +0100 (CET) User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.2.1) Gecko/20021213 Debian/1.2.1-2.bunk X-Accept-Language: en Original-To: Stefan Monnier In-Reply-To: <4197DAE1.6030405@math.ku.dk> 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: main.gmane.org gmane.emacs.devel:29862 X-Report-Spam: http://spam.gmane.org/gmane.emacs.devel:29862 Lars Hansen wrote: > But now I see that you need more information. I can't reproduce the > bug with > emacs --no-init-file --load=ls-lisp > So something in my .emacs file is causing the trouble. I will get back > when I have found out what. I just forgot ls-lisp-use-insert-directory-program. So here is a description on how to reproduce the problem: Start Emacs like emacs --no-init-file --no-site-file --load=ls-lisp \ --eval=(setq ls-lisp-use-insert-directory-program nil) ~/test Then the dired buffer will contain something like /home/lh/test: total used in directory 9 available 3995032 drwxrwxr-x 2 lh lh 4096 Nov 15 08:34 . drwxr-xr-x 34 lh lh 4096 Nov 15 08:33 .. -rw-rw-r-- 1 lh lh 9 Nov 15 08:34 foo Place point on foo and do C bar . Then the dired buffer will contain /home/lh/test: total used in directory 9 available 3995032 drwxrwxr-x 2 lh lh 4096 Nov 15 08:34 . drwxr-xr-x 34 lh lh 4096 Nov 15 08:33 .. C -rw-rw-r-- 1 lh lh 9 Nov 15 08:34 bar -rw-rw-r-- 1 lh lh 9 Nov 15 08:34 foo