unofficial mirror of bug-gnu-emacs@gnu.org 
 help / color / mirror / code / Atom feed
* bug#67953: 30.0.50; ls-lisp messes up columns
@ 2023-12-21 14:35 Stefan Monnier via Bug reports for GNU Emacs, the Swiss army knife of text editors
  2023-12-22  9:01 ` Eli Zaretskii
  0 siblings, 1 reply; 4+ messages in thread
From: Stefan Monnier via Bug reports for GNU Emacs, the Swiss army knife of text editors @ 2023-12-21 14:35 UTC (permalink / raw)
  To: 67953

Package: Emacs
Version: 30.0.50


After loading `ls-lisp`, I notice that with (setq
ls-lisp-use-insert-directory-program t) I get the nice:

    C-x d /u*/s* RET  ==>

      /:
      wildcard u*/s*/
      drwxr-xr-x   2 root root 20480 10 déc 11:24 usr/sbin/
      drwxr-xr-x 404 root root 16384  2 déc 15:05 usr/share/
      drwxr-xr-x   4 root root  4096 22 fév  2023 usr/src/

But with (setq ls-lisp-use-insert-directory-program nil) I get:

    C-x d /u*/s* RET  ==>

      /:
      wildcard u*/s*
      drwxr-xr-x  2 root root 20480 12-10 11:24 usr/sbin
      drwxr-xr-x404 root root 16384 12-02 15:05 usr/share
       drwxr-xr-x  4 root root 4096 2023-02-22  usr/src

Notice the weird extra space in front of the last line and the missing
space between "x" and "404" in the penultimate line.


        Stefan






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

* bug#67953: 30.0.50; ls-lisp messes up columns
  2023-12-21 14:35 bug#67953: 30.0.50; ls-lisp messes up columns Stefan Monnier via Bug reports for GNU Emacs, the Swiss army knife of text editors
@ 2023-12-22  9:01 ` Eli Zaretskii
  2023-12-22 15:31   ` Stefan Monnier via Bug reports for GNU Emacs, the Swiss army knife of text editors
  0 siblings, 1 reply; 4+ messages in thread
From: Eli Zaretskii @ 2023-12-22  9:01 UTC (permalink / raw)
  To: Stefan Monnier; +Cc: 67953

> Date: Thu, 21 Dec 2023 09:35:55 -0500
> From:  Stefan Monnier via "Bug reports for GNU Emacs,
>  the Swiss army knife of text editors" <bug-gnu-emacs@gnu.org>
> 
> Package: Emacs
> Version: 30.0.50
> 
> 
> After loading `ls-lisp`, I notice that with (setq
> ls-lisp-use-insert-directory-program t) I get the nice:
> 
>     C-x d /u*/s* RET  ==>
> 
>       /:
>       wildcard u*/s*/
>       drwxr-xr-x   2 root root 20480 10 déc 11:24 usr/sbin/
>       drwxr-xr-x 404 root root 16384  2 déc 15:05 usr/share/
>       drwxr-xr-x   4 root root  4096 22 fév  2023 usr/src/
> 
> But with (setq ls-lisp-use-insert-directory-program nil) I get:
> 
>     C-x d /u*/s* RET  ==>
> 
>       /:
>       wildcard u*/s*
>       drwxr-xr-x  2 root root 20480 12-10 11:24 usr/sbin
>       drwxr-xr-x404 root root 16384 12-02 15:05 usr/share
>        drwxr-xr-x  4 root root 4096 2023-02-22  usr/src
> 
> Notice the weird extra space in front of the last line and the missing
> space between "x" and "404" in the penultimate line.

It's a bug in dired-align-file (it sounds like it was never tested
with a version of 'ls' that doesn't support the --dired switch).  Its
algorithm breaks down if the entry of a file does not start with
spaces.  --dired guarantees that, but ls-lisp doesn't, and I wonder
what other versions of 'ls' do.

The simple kludge below, which simply prevents it from realigning the
first column of data, seems to fix it here.  WDYT?

diff --git a/lisp/dired.el b/lisp/dired.el
index cc548ba..3838368 100644
--- a/lisp/dired.el
+++ b/lisp/dired.el
@@ -1572,14 +1572,16 @@ dired-align-file
 		 ;; the beginning or the end of the next field, depending on
 		 ;; whether this field is left or right aligned).
 		 (align-pt-offset
-		  (save-excursion
-		    (goto-char other)
-		    (move-to-column curcol)
-		    (when (looking-at
-			   (concat
-			    (if (eq (char-before) ?\s) " *" "[^ ]* *")
-			    (if num-align "[0-9][^ ]*")))
-		      (- (match-end 0) (match-beginning 0)))))
+                  (if (zerop curcol)
+                      0
+		    (save-excursion
+		      (goto-char other)
+		      (move-to-column curcol)
+		      (when (looking-at
+			     (concat
+			      (if (eq (char-before) ?\s) " *" "[^ ]* *")
+			      (if num-align "[0-9][^ ]*")))
+		        (- (match-end 0) (match-beginning 0))))))
 		 ;; Now, the number of spaces to insert is align-pt-offset
 		 ;; minus the distance to the equivalent point on the
 		 ;; current line.





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

* bug#67953: 30.0.50; ls-lisp messes up columns
  2023-12-22  9:01 ` Eli Zaretskii
@ 2023-12-22 15:31   ` Stefan Monnier via Bug reports for GNU Emacs, the Swiss army knife of text editors
  2023-12-23 11:05     ` Eli Zaretskii
  0 siblings, 1 reply; 4+ messages in thread
From: Stefan Monnier via Bug reports for GNU Emacs, the Swiss army knife of text editors @ 2023-12-22 15:31 UTC (permalink / raw)
  To: Eli Zaretskii; +Cc: 67953

> The simple kludge below, which simply prevents it from realigning the
> first column of data, seems to fix it here.  WDYT?

Looks OK to me.  I'd recommend we add a comment about this (zerop
curcol) test explaining why the other branch mishandles this
case (or mentioning that we don't know why).


        Stefan


> diff --git a/lisp/dired.el b/lisp/dired.el
> index cc548ba..3838368 100644
> --- a/lisp/dired.el
> +++ b/lisp/dired.el
> @@ -1572,14 +1572,16 @@ dired-align-file
>  		 ;; the beginning or the end of the next field, depending on
>  		 ;; whether this field is left or right aligned).
>  		 (align-pt-offset
> -		  (save-excursion
> -		    (goto-char other)
> -		    (move-to-column curcol)
> -		    (when (looking-at
> -			   (concat
> -			    (if (eq (char-before) ?\s) " *" "[^ ]* *")
> -			    (if num-align "[0-9][^ ]*")))
> -		      (- (match-end 0) (match-beginning 0)))))
> +                  (if (zerop curcol)
> +                      0
> +		    (save-excursion
> +		      (goto-char other)
> +		      (move-to-column curcol)
> +		      (when (looking-at
> +			     (concat
> +			      (if (eq (char-before) ?\s) " *" "[^ ]* *")
> +			      (if num-align "[0-9][^ ]*")))
> +		        (- (match-end 0) (match-beginning 0))))))
>  		 ;; Now, the number of spaces to insert is align-pt-offset
>  		 ;; minus the distance to the equivalent point on the
>  		 ;; current line.






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

* bug#67953: 30.0.50; ls-lisp messes up columns
  2023-12-22 15:31   ` Stefan Monnier via Bug reports for GNU Emacs, the Swiss army knife of text editors
@ 2023-12-23 11:05     ` Eli Zaretskii
  0 siblings, 0 replies; 4+ messages in thread
From: Eli Zaretskii @ 2023-12-23 11:05 UTC (permalink / raw)
  To: Stefan Monnier; +Cc: 67953-done

> From: Stefan Monnier <monnier@iro.umontreal.ca>
> Cc: 67953@debbugs.gnu.org
> Date: Fri, 22 Dec 2023 10:31:07 -0500
> 
> > The simple kludge below, which simply prevents it from realigning the
> > first column of data, seems to fix it here.  WDYT?
> 
> Looks OK to me.  I'd recommend we add a comment about this (zerop
> curcol) test explaining why the other branch mishandles this
> case (or mentioning that we don't know why).

Done.  I decided to install this on master, since this is a very old
problem (I can see it in Emacs 26), and the situations where it rears
its ugly head are quite rare.

Closing.





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

end of thread, other threads:[~2023-12-23 11:05 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-12-21 14:35 bug#67953: 30.0.50; ls-lisp messes up columns Stefan Monnier via Bug reports for GNU Emacs, the Swiss army knife of text editors
2023-12-22  9:01 ` Eli Zaretskii
2023-12-22 15:31   ` Stefan Monnier via Bug reports for GNU Emacs, the Swiss army knife of text editors
2023-12-23 11:05     ` Eli Zaretskii

Code repositories for project(s) associated with this public inbox

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

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).