From 8722f48831c385245f5f78462159d2785a2d4323 Mon Sep 17 00:00:00 2001 From: Albert Cervin Date: Sun, 10 Nov 2024 23:11:36 +0100 Subject: Render tabs using the correct tab width Previously, the code assumed 4. --- test/minibuffer.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test') diff --git a/test/minibuffer.c b/test/minibuffer.c index b4f8c05..8d531c3 100644 --- a/test/minibuffer.c +++ b/test/minibuffer.c @@ -49,7 +49,7 @@ void test_minibuffer_echo(void) { g_alloc = &alloc; struct command_list *list = - command_list_create(10, alloc_fn, 0, 0, "minibuffer"); + command_list_create(10, alloc_fn, 0, 0, 4, "minibuffer"); init(); ASSERT(!minibuffer_displaying(), -- cgit v1.2.3