aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/bs.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/bs.el b/lisp/bs.el
index 0d65da14c72..32431ba4466 100644
--- a/lisp/bs.el
+++ b/lisp/bs.el
@@ -1159,7 +1159,7 @@ and move point to current buffer."
1159 (bs-mode) 1159 (bs-mode)
1160 (let* ((inhibit-read-only t) 1160 (let* ((inhibit-read-only t)
1161 (map-fun (lambda (entry) 1161 (map-fun (lambda (entry)
1162 (length (buffer-name entry)))) 1162 (string-width (buffer-name entry))))
1163 (max-length-of-names (apply 'max 1163 (max-length-of-names (apply 'max
1164 (cons 0 (mapcar map-fun list)))) 1164 (cons 0 (mapcar map-fun list))))
1165 (name-entry-length (min bs-maximal-buffer-name-column 1165 (name-entry-length (min bs-maximal-buffer-name-column
@@ -1371,7 +1371,7 @@ normally *buffer-selection*."
1371 apply-args) 1371 apply-args)
1372 (nth 3 column) ; align 1372 (nth 3 column) ; align
1373 (- min to-much))) 1373 (- min to-much)))
1374 (len (length new-string))) 1374 (len (string-width new-string)))
1375 (setq string (concat string new-string)) 1375 (setq string (concat string new-string))
1376 (when (> len min) 1376 (when (> len min)
1377 (setq to-much (- len min)))))) 1377 (setq to-much (- len min))))))