* lisp/which-key.el (which-key--pad-column): Insert zero padding
spaces when the description string is longer than the column
width. (Bug#75765)
(cherry picked from commit
a7f34a532cf7d99dac58bd7187f7ad82c1e4d789)
(mapcar (pcase-lambda (`(,key ,sep ,desc ,_doc))
(concat
(format col-format key sep desc)
- (make-string (- col-desc-width (string-width desc)) ?\s)))
+ (make-string (max (- col-desc-width (string-width desc)) 0) ?\s)))
col-keys))))
(defun which-key--partition-list (n list)