From: Eli Zaretskii Date: Thu, 16 Apr 2020 10:08:01 +0000 (+0300) Subject: Avoid compiler warning in indent.c X-Git-Tag: emacs-28.0.90~7575 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=c77d6af1ddb4cc2a515397e955b8389fa9025d8c;p=emacs.git Avoid compiler warning in indent.c * src/indent.c (Fvertical_motion): Avoid compilation warning. Reported by Juanma Barranquero . --- 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);