diff options
| author | Albert Cervin <albert@acervin.com> | 2024-11-10 23:11:36 +0100 |
|---|---|---|
| committer | Albert Cervin <albert@acervin.com> | 2024-11-10 23:11:36 +0100 |
| commit | 8722f48831c385245f5f78462159d2785a2d4323 (patch) | |
| tree | d235e157289354a0540d619f3072b9fb84921de2 /test/minibuffer.c | |
| parent | 4764653ba333f015bc2f87fd2248aab6b6185868 (diff) | |
| download | dged-8722f48831c385245f5f78462159d2785a2d4323.tar.gz dged-8722f48831c385245f5f78462159d2785a2d4323.tar.xz dged-8722f48831c385245f5f78462159d2785a2d4323.zip | |
Render tabs using the correct tab width
Previously, the code assumed 4.
Diffstat (limited to 'test/minibuffer.c')
| -rw-r--r-- | test/minibuffer.c | 2 |
1 files changed, 1 insertions, 1 deletions
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(), |
