From ee5b250b6618dcedc463c5b882e26f2027789a9b Mon Sep 17 00:00:00 2001 From: Benno Schulenberg <bensberg@telfort.nl> Date: Fri, 22 Dec 2017 23:00:32 +0100 Subject: [PATCH] indenting: don't exclude last line of region when region is empty This fixes https://savannah.gnu.org/bugs/?52717. --- src/utils.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils.c b/src/utils.c index decad9e9..5a2fbaed 100644 --- a/src/utils.c +++ b/src/utils.c @@ -540,7 +540,7 @@ void get_region(const filestruct **top, const filestruct **bot) mark_order(top, &top_x, bot, &bot_x, NULL); - if (bot_x == 0) + if (bot_x == 0 && *bot != *top) *bot = (*bot)->prev; } -- GitLab