diff options
author | Eli Zaretskii <eliz@gnu.org> | 2020-04-16 13:08:01 +0300 |
---|---|---|
committer | Eli Zaretskii <eliz@gnu.org> | 2020-04-16 13:08:01 +0300 |
commit | c77d6af1ddb4cc2a515397e955b8389fa9025d8c (patch) | |
tree | 52851045d5e134107529b380406b62ff5cb285c4 /src/indent.c | |
parent | 82c1d150938b38435c0ae9aa921d7c2739ed200c (diff) | |
download | emacs-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.c | 2 |
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); |