From c77d6af1ddb4cc2a515397e955b8389fa9025d8c Mon Sep 17 00:00:00 2001 From: Eli Zaretskii Date: Thu, 16 Apr 2020 13:08:01 +0300 Subject: [PATCH] Avoid compiler warning in indent.c * src/indent.c (Fvertical_motion): Avoid compilation warning. Reported by Juanma Barranquero . --- src/indent.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/indent.c b/src/indent.c index f7db42783c1..2d07791606d 100644 --- a/src/indent.c +++ b/src/indent.c @@ -2102,6 +2102,8 @@ whether or not it is currently displayed in some window. */) lcols = XCAR (lines); lines = XCDR (lines); } + else + lcols = 0; /* shut up stupid GCC warning */ CHECK_FIXNUM (lines); w = decode_live_window (window); -- 2.39.5