From ec8f3ea958deaca460d9c64add4342018fa5b15d Mon Sep 17 00:00:00 2001 From: Paul Eggert Date: Mon, 31 Jan 2022 08:42:07 -0800 Subject: [PATCH] expand: remove IF_LINT * src/expand.c (expand): Remove no-longer-needed IF_LINT. --- src/expand.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/expand.c b/src/expand.c index d616997dca..ed78ca81d7 100644 --- a/src/expand.c +++ b/src/expand.c @@ -133,7 +133,7 @@ expand (void) { /* Column the next input tab stop is on. */ uintmax_t next_tab_column; - bool last_tab IF_LINT (=0); + bool last_tab; next_tab_column = get_next_tab_column (column, &tab_index, &last_tab); -- 2.47.3