Function: magit-repolist--ensure-padding
magit-repolist--ensure-padding is a byte-compiled function defined in
magit-repos.el.
Signature
(magit-repolist--ensure-padding)
Documentation
Set tabulated-list-padding to 2, unless that is already non-zero.
Source Code
;; Defined in ~/.emacs.d/elpa/magit-20260411.1452/magit-repos.el
(defun magit-repolist--ensure-padding ()
"Set `tabulated-list-padding' to 2, unless that is already non-zero."
(when (zerop tabulated-list-padding)
(setq tabulated-list-padding 2)
(tabulated-list-init-header)
(tabulated-list-print t)))