From: Philip Kaludercic Date: Tue, 18 Jun 2024 08:41:01 +0000 (+0200) Subject: ; * lisp/which-key.el (which-key--process-page): Use ?\s X-Git-Tag: archive/raspbian/1%30.1+1-3+rpi1^2~2^2~20^2~983^2~2 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=b0b7df823b31b8213fb6e755de3105233415bd65;p=emacs.git ; * lisp/which-key.el (which-key--process-page): Use ?\s --- diff --git a/lisp/which-key.el b/lisp/which-key.el index a4720040f7a..51b8ece457f 100644 --- a/lisp/which-key.el +++ b/lisp/which-key.el @@ -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))))