]> git.eshelyaron.com Git - emacs.git/commitdiff
* 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 21a588a87dab5b78a4a4a3a9fe6cb2f8867ee58a..9f5ed0a0c31c446a68541e13e96e9774de0dac5c 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 d5e7671fa8cac0afbcdfba17576f50627fc4ff9d..baea06419487615cc86bf997f9c8968b49daee52 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);