; * lisp/which-key.el (which-key--process-page): Use ?\s
authorPhilip Kaludercic <philipk@posteo.net>
Tue, 18 Jun 2024 08:41:01 +0000 (10:41 +0200)
committerPhilip Kaludercic <philipk@posteo.net>
Tue, 18 Jun 2024 09:31:04 +0000 (11:31 +0200)
lisp/which-key.el

index a4720040f7ab85717401e6b42db77dea99e32068..51b8ece457f362e3f3a547c33cf7f744d742c94c 100644 (file)
@@ -2251,13 +2251,13 @@ prefix, and a page count."
                             (format
                              (concat "%-" (int-to-string first-col-width) "s")
                              page-cnt)
-                          (make-string first-col-width 32)))
+                          (make-string first-col-width ?\s)))
               lines first-line new-end)
          (if (= 1 height)
              (cons (concat prefix page) nil)
            (setq lines (split-string page "\n")
                  first-line (concat prefix (car lines) "\n" page-cnt)
-                 new-end (concat "\n" (make-string first-col-width 32)))
+                 new-end (concat "\n" (make-string first-col-width ?\s)))
            (cons
             (concat first-line (mapconcat #'identity (cdr lines) new-end))
             nil))))