From: Paul Eggert Date: Tue, 15 Mar 2011 17:59:31 +0000 (-0700) Subject: * indent.c (Fvertical_motion): Mark locals as initialized. X-Git-Tag: emacs-pretest-24.0.90~104^2~275^2~554^2~72 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=5671df8f51e552ca7d61296faf67b110b6a33235;p=emacs.git * indent.c (Fvertical_motion): Mark locals as initialized. --- diff --git a/src/ChangeLog b/src/ChangeLog index 21a588a87da..9f5ed0a0c31 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -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. diff --git a/src/indent.c b/src/indent.c index d5e7671fa8c..baea0641948 100644 --- a/src/indent.c +++ b/src/indent.c @@ -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);