all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* dired alignment hacks
@ 2004-10-13  2:15 Miles Bader
  2004-10-13  2:42 ` Stefan
  2004-11-14 15:59 ` Lars Hansen
  0 siblings, 2 replies; 8+ messages in thread
From: Miles Bader @ 2004-10-13  2:15 UTC (permalink / raw)


BTW, Stefan, your dired alignment hacks have worked flawlessly so far
... it's a great relief to use dired without constantly having to
refresh the display!

Thanks,

-Miles
-- 
Any man who is a triangle, has thee right, when in Cartesian Space, to
have angles, which when summed, come to know more, nor no less, than
nine score degrees, should he so wish.  [TEMPLE OV THEE LEMUR]

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: dired alignment hacks
  2004-10-13  2:15 dired alignment hacks Miles Bader
@ 2004-10-13  2:42 ` Stefan
  2004-11-14 15:59 ` Lars Hansen
  1 sibling, 0 replies; 8+ messages in thread
From: Stefan @ 2004-10-13  2:42 UTC (permalink / raw)
  Cc: emacs-devel

> BTW, Stefan, your dired alignment hacks have worked flawlessly so far
> ... it's a great relief to use dired without constantly having to
> refresh the display!

Glad to hear it, thanks,


        Stefan "who hasn't used dired since"

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: dired alignment hacks
  2004-10-13  2:15 dired alignment hacks Miles Bader
  2004-10-13  2:42 ` Stefan
@ 2004-11-14 15:59 ` Lars Hansen
  2004-11-14 19:21   ` Stefan Monnier
  1 sibling, 1 reply; 8+ messages in thread
From: Lars Hansen @ 2004-11-14 15:59 UTC (permalink / raw)
  Cc: monnier, emacs-devel

Miles Bader wrote:

> BTW, Stefan, your dired alignment hacks have worked flawlessly so far
> ... it's a great relief to use dired without constantly having to
> refresh the display!

I am afraid the hack have made things worse for users of ls-lisp.
I havent had time to find out how to fix it, though.

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: dired alignment hacks
  2004-11-14 15:59 ` Lars Hansen
@ 2004-11-14 19:21   ` Stefan Monnier
       [not found]     ` <4197CC75.1030500@math.ku.dk>
  0 siblings, 1 reply; 8+ messages in thread
From: Stefan Monnier @ 2004-11-14 19:21 UTC (permalink / raw)
  Cc: emacs-devel, Miles Bader

>> BTW, Stefan, your dired alignment hacks have worked flawlessly so far
>> ... it's a great relief to use dired without constantly having to
>> refresh the display!

> I am afraid the hack have made things worse for users of ls-lisp.
> I havent had time to find out how to fix it, though.

If you keep your bug report secret it's difficult for us to help.


        Stefan

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: dired alignment hacks
       [not found]       ` <873bzc2jeu.fsf-monnier+emacs@gnu.org>
@ 2004-11-14 22:23         ` Lars Hansen
  2004-11-15  7:40           ` Lars Hansen
  0 siblings, 1 reply; 8+ messages in thread
From: Lars Hansen @ 2004-11-14 22:23 UTC (permalink / raw)
  Cc: emacs-devel

Stefan Monnier wrote:

>>>If you keep your bug report secret it's difficult for us to help.
>>>      
>>>
>>I don't keep it a secret: Here it is!
>>    
>>
>
>I didn't see anything.  You probably just forgot to include it.
>Could you send it again?
>  
>
What I meant was: The previous mail was mean to be a bug report.
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.

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: dired alignment hacks
  2004-11-14 22:23         ` Lars Hansen
@ 2004-11-15  7:40           ` Lars Hansen
  2004-11-22  5:04             ` Stefan Monnier
  0 siblings, 1 reply; 8+ messages in thread
From: Lars Hansen @ 2004-11-15  7:40 UTC (permalink / raw)
  Cc: emacs-devel

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 <RET>. 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

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: dired alignment hacks
  2004-11-15  7:40           ` Lars Hansen
@ 2004-11-22  5:04             ` Stefan Monnier
  2004-11-22 17:22               ` Lars Hansen
  0 siblings, 1 reply; 8+ messages in thread
From: Stefan Monnier @ 2004-11-22  5:04 UTC (permalink / raw)
  Cc: emacs-devel

>    emacs --no-init-file --no-site-file --load=ls-lisp \
>    --eval=(setq ls-lisp-use-insert-directory-program nil) ~/test

OK, I believe I've fixed this bug now.  Thank you,


        Stefan

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: dired alignment hacks
  2004-11-22  5:04             ` Stefan Monnier
@ 2004-11-22 17:22               ` Lars Hansen
  0 siblings, 0 replies; 8+ messages in thread
From: Lars Hansen @ 2004-11-22 17:22 UTC (permalink / raw)
  Cc: emacs-devel

Stefan Monnier wrote:

>OK, I believe I've fixed this bug now.  Thank you,
>  
>
I works! :-)

^ permalink raw reply	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2004-11-22 17:22 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2004-10-13  2:15 dired alignment hacks Miles Bader
2004-10-13  2:42 ` Stefan
2004-11-14 15:59 ` Lars Hansen
2004-11-14 19:21   ` Stefan Monnier
     [not found]     ` <4197CC75.1030500@math.ku.dk>
     [not found]       ` <873bzc2jeu.fsf-monnier+emacs@gnu.org>
2004-11-14 22:23         ` Lars Hansen
2004-11-15  7:40           ` Lars Hansen
2004-11-22  5:04             ` Stefan Monnier
2004-11-22 17:22               ` Lars Hansen

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.