Skip to content

Commit b0b7df8

Browse files
committed
; * lisp/which-key.el (which-key--process-page): Use ?\s
1 parent e0190c4 commit b0b7df8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lisp/which-key.el

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2251,13 +2251,13 @@ prefix, and a page count."
22512251
(format
22522252
(concat "%-" (int-to-string first-col-width) "s")
22532253
page-cnt)
2254-
(make-string first-col-width 32)))
2254+
(make-string first-col-width ?\s)))
22552255
lines first-line new-end)
22562256
(if (= 1 height)
22572257
(cons (concat prefix page) nil)
22582258
(setq lines (split-string page "\n")
22592259
first-line (concat prefix (car lines) "\n" page-cnt)
2260-
new-end (concat "\n" (make-string first-col-width 32)))
2260+
new-end (concat "\n" (make-string first-col-width ?\s)))
22612261
(cons
22622262
(concat first-line (mapconcat #'identity (cdr lines) new-end))
22632263
nil))))

0 commit comments

Comments
 (0)