]> code.delx.au - gnu-emacs/commitdiff
* indent.c (Fvertical_motion): Mark locals as initialized.
authorPaul Eggert <eggert@cs.ucla.edu>
Thu, 14 Jul 2011 21:35:23 +0000 (14:35 -0700)
committerPaul Eggert <eggert@cs.ucla.edu>
Thu, 14 Jul 2011 21:35:23 +0000 (14:35 -0700)
src/ChangeLog
src/indent.c

index 960ab3d07756fc6323b529ae36909af003842b2e..3cdb3610dd0ffd42f3a41268fa5122bff060c267 100644 (file)
@@ -1,5 +1,6 @@
 2011-07-14  Paul Eggert  <eggert@cs.ucla.edu>
 
+       * indent.c (Fvertical_motion): Mark locals as initialized.
        * xdisp.c (reseat_to_string): Fix pointer signedness issue.
 
 2011-07-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
index c36b83daa02796c037d4ddf8333350a724ee9bb4..aaeaaf591ef3b307ffba70067a357d1910564b4c 100644 (file)
@@ -1985,7 +1985,7 @@ whether or not it is currently displayed in some window.  */)
   struct text_pos pt;
   struct window *w;
   Lisp_Object old_buffer;
-  EMACS_INT old_charpos, old_bytepos;
+  EMACS_INT old_charpos IF_LINT (= 0), old_bytepos IF_LINT (= 0);
   struct gcpro gcpro1, gcpro2, gcpro3;
   Lisp_Object lcols = Qnil;
   double cols IF_LINT (= 0);