]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix args of truncate-string-to-width in ibuffer-compile-make-substring-form
authorJuri Linkov <juri@linkov.net>
Tue, 6 Oct 2020 18:33:20 +0000 (21:33 +0300)
committerJuri Linkov <juri@linkov.net>
Tue, 6 Oct 2020 18:33:20 +0000 (21:33 +0300)
* lisp/ibuffer.el (ibuffer-compile-make-substring-form): Fix args of
truncate-string-to-width call (bug#41250)

lisp/ibuffer.el

index c9a748830c10041fdd7342dec7055846643e1746..8ff3b56c5e6af77c925858ebea81f1ccd00d6ef3 100644 (file)
@@ -1597,7 +1597,7 @@ If point is on a group name, this function operates on that group."
 (defun ibuffer-compile-make-substring-form (strvar maxvar from-end-p)
   (if from-end-p
       ;; FIXME: not sure if this case is correct (Bug#24972)
-      `(truncate-string-to-width str strlen (- strlen ,maxvar) nil ?\s)
+      `(truncate-string-to-width str strlen (- strlen ,maxvar) ?\s)
     `(truncate-string-to-width ,strvar ,maxvar nil ?\s)))
 
 (defun ibuffer-compile-make-format-form (strvar widthform alignment)