diff options
author | Glenn Morris <rgm@gnu.org> | 2020-04-16 09:05:52 -0700 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2020-04-16 09:05:52 -0700 |
commit | cead6f0ad18206401b5180fd44f848a76fed8e43 (patch) | |
tree | fba301b0895e6d907dcaa44e35315688ba92fa6f /src/indent.c | |
parent | b5e9beda8d80345ec4c2d2ecec9c03cc31c1eb29 (diff) | |
download | emacs-cead6f0ad18206401b5180fd44f848a76fed8e43.tar.gz emacs-cead6f0ad18206401b5180fd44f848a76fed8e43.tar.bz2 emacs-cead6f0ad18206401b5180fd44f848a76fed8e43.zip |
* src/indent.c (Fvertical_motion): Fix int/Lisp_Object mix up.
Diffstat (limited to 'src/indent.c')
-rw-r--r-- | src/indent.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/indent.c b/src/indent.c index 2d07791606d..dd81b983d48 100644 --- a/src/indent.c +++ b/src/indent.c @@ -2103,7 +2103,7 @@ whether or not it is currently displayed in some window. */) lines = XCDR (lines); } else - lcols = 0; /* shut up stupid GCC warning */ + lcols = make_fixnum (0); /* shut up stupid GCC warning */ CHECK_FIXNUM (lines); w = decode_live_window (window); |