]> git.eshelyaron.com Git - emacs.git/commitdiff
; Fix previous change
authorMark Oteiza <mvoteiza@udel.edu>
Tue, 22 Nov 2016 16:09:15 +0000 (11:09 -0500)
committerMark Oteiza <mvoteiza@udel.edu>
Tue, 22 Nov 2016 16:09:15 +0000 (11:09 -0500)
strlen is already computed, just use the symbol.
* lisp/ibuffer.el (ibuffer-compile-make-eliding-form): Use strlen.

lisp/ibuffer.el

index dc5681c465919309f04418c6f1c0be1a4e90fbbd..51d7cb90755229f57832c2fc277032f8265c1fb7 100644 (file)
@@ -1571,7 +1571,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 (string-width str) (- strlen ,maxvar) nil ?\s)
+      `(truncate-string-to-width str strlen (- strlen ,maxvar) nil ?\s)
     `(truncate-string-to-width ,strvar ,maxvar nil ?\s)))
 
 (defun ibuffer-compile-make-format-form (strvar widthform alignment)