summaryrefslogtreecommitdiff
path: root/src/indent.c
diff options
context:
space:
mode:
authorEli Zaretskii <eliz@gnu.org>2020-04-16 13:08:01 +0300
committerEli Zaretskii <eliz@gnu.org>2020-04-16 13:08:01 +0300
commitc77d6af1ddb4cc2a515397e955b8389fa9025d8c (patch)
tree52851045d5e134107529b380406b62ff5cb285c4 /src/indent.c
parent82c1d150938b38435c0ae9aa921d7c2739ed200c (diff)
downloademacs-c77d6af1ddb4cc2a515397e955b8389fa9025d8c.tar.gz
Avoid compiler warning in indent.c
* src/indent.c (Fvertical_motion): Avoid compilation warning. Reported by Juanma Barranquero <lekktu@gmail.com>.
Diffstat (limited to 'src/indent.c')
-rw-r--r--src/indent.c2
1 files changed, 2 insertions, 0 deletions
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);