Re: [PATCH] log-tree: use decimal_width()
From: Junio C Hamano <hidden>
Date: 2024-08-05 16:03:11
Taylor Blau [off-list ref] writes:
On Sat, Aug 03, 2024 at 02:33:24PM +0200, René Scharfe wrote:quoted
--- log-tree.c | 13 ++----------- 1 file changed, 2 insertions(+), 11 deletions(-)This looks all very reasonable to me. Some history (if interesting): lineno_width(), which was the precursor to decimal_width() was introduced way back in cee7f245dc (git-pickaxe: blame rewritten., 2006-10-19). The piece this patch removes was added in e00de24b10 (format-patch -n: make sorting easier by padding number, 2007-02-09), but lineno_width() did not become part of pager.h until ec7ff5ba27 (make lineno_width() from blame reusable for others, 2012-02-12), hence why it wasn't already used here.
Thanks. I was wondering why the decimal_width() helper is in pager.c in the first place, as there is no logical reason to tie it to the pager infrastructure.