* indent.c (Fvertical_motion): Mark locals as initialized.
authorPaul Eggert <eggert@cs.ucla.edu>
Tue, 15 Mar 2011 17:59:31 +0000 (10:59 -0700)
committerPaul Eggert <eggert@cs.ucla.edu>
Tue, 15 Mar 2011 17:59:31 +0000 (10:59 -0700)
src/ChangeLog
src/indent.c

index 21a588a..9f5ed0a 100644 (file)
@@ -4,6 +4,7 @@
        All uses changed.
        (MULTIBYTE_BYTES_WIDTH, scan_for_column, compute_motion):
        Rename locals to avoid shadowing.
+       (Fvertical_motion): Mark locals as initialized.
 
        * casefiddle.c (casify_object, casify_region): Now static.
        (casify_region): Mark local as initialized.
index d5e7671..baea064 100644 (file)
@@ -1995,7 +1995,7 @@ whether or not it is currently displayed in some window.  */)
   Lisp_Object old_buffer;
   struct gcpro gcpro1;
   Lisp_Object lcols = Qnil;
-  double cols;
+  double cols IF_LINT (= 0);
 
   /* Allow LINES to be of the form (HPOS . VPOS) aka (COLUMNS . LINES).  */
   if (CONSP (lines) && (NUMBERP (XCAR (lines))))
@@ -2029,7 +2029,7 @@ whether or not it is currently displayed in some window.  */)
     }
   else
     {
-      int it_start, first_x, it_overshoot_expected;
+      int it_start, first_x, it_overshoot_expected IF_LINT (= 0);
 
       SET_TEXT_POS (pt, PT, PT_BYTE);
       start_display (&it, w, pt);