From 5981a65cc29f50d1b12552810cbdfef2e8e3f959 Mon Sep 17 00:00:00 2001 From: Markus Triska Date: Tue, 16 Nov 2021 18:41:43 +0100 Subject: [PATCH] better layout --- src/lib/format.pl | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/lib/format.pl b/src/lib/format.pl index 9ef36bf4..9cb89937 100644 --- a/src/lib/format.pl +++ b/src/lib/format.pl @@ -373,8 +373,7 @@ integer_to_radix_(0, _, _) --> !. integer_to_radix_(I0, R, Ds) --> { M is I0 mod R, nth0(M, Ds, D), - I is I0 // R - }, + I is I0 // R }, [D], integer_to_radix_(I, R, Ds). -- 2.54.0