]> git.eshelyaron.com Git - emacs.git/commitdiff
* src/indent.c (Fvertical_motion): Fix int/Lisp_Object mix up.
authorGlenn Morris <rgm@gnu.org>
Thu, 16 Apr 2020 16:05:52 +0000 (09:05 -0700)
committerGlenn Morris <rgm@gnu.org>
Thu, 16 Apr 2020 16:05:52 +0000 (09:05 -0700)
src/indent.c

index 2d07791606d3c7e2111fe460756aea3f5042dd0b..dd81b983d48650917e5b8d08ed4aa7a2928c21f0 100644 (file)
@@ -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);