aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorEli Zaretskii2020-04-16 13:08:01 +0300
committerEli Zaretskii2020-04-16 13:08:01 +0300
commitc77d6af1ddb4cc2a515397e955b8389fa9025d8c (patch)
tree52851045d5e134107529b380406b62ff5cb285c4 /src
parent82c1d150938b38435c0ae9aa921d7c2739ed200c (diff)
downloademacs-c77d6af1ddb4cc2a515397e955b8389fa9025d8c.tar.gz
emacs-c77d6af1ddb4cc2a515397e955b8389fa9025d8c.zip
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')
-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. */)
2102 lcols = XCAR (lines); 2102 lcols = XCAR (lines);
2103 lines = XCDR (lines); 2103 lines = XCDR (lines);
2104 } 2104 }
2105 else
2106 lcols = 0; /* shut up stupid GCC warning */
2105 2107
2106 CHECK_FIXNUM (lines); 2108 CHECK_FIXNUM (lines);
2107 w = decode_live_window (window); 2109 w = decode_live_window (window);