Fix args of truncate-string-to-width in ibuffer-compile-make-substring-form
* lisp/ibuffer.el (ibuffer-compile-make-substring-form): Fix args of truncate-string-to-width call (bug#41250)
This commit is contained in:
parent
278c9d69cd
commit
c30f6da0da
1 changed files with 1 additions and 1 deletions
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue