From 0ed1695fd4bc03955438a4a165b73856b0e31fd6 Mon Sep 17 00:00:00 2001 From: Benno Schulenberg Date: Thu, 16 Jul 2020 12:45:21 +0200 Subject: [PATCH] build: fix miscompilation for --enable-{tiny,color,nanorc} This should have been part of commit 096e3627 from a month ago. --- src/prototypes.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/prototypes.h b/src/prototypes.h index 61ae7c2f..c6bd6b87 100644 --- a/src/prototypes.h +++ b/src/prototypes.h @@ -413,7 +413,7 @@ RETSIGTYPE handle_crash(int signal); #endif RETSIGTYPE do_suspend(int signal); RETSIGTYPE do_continue(int signal); -#if !defined(NANO_TINY) || defined(ENABLE_SPELLER) +#if !defined(NANO_TINY) || defined(ENABLE_SPELLER) || defined(ENABLE_COLOR) void block_sigwinch(bool blockit); #endif #ifndef NANO_TINY