aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog1
-rw-r--r--src/indent.c2
2 files changed, 2 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 960ab3d0775..3cdb3610dd0 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,5 +1,6 @@
12011-07-14 Paul Eggert <eggert@cs.ucla.edu> 12011-07-14 Paul Eggert <eggert@cs.ucla.edu>
2 2
3 * indent.c (Fvertical_motion): Mark locals as initialized.
3 * xdisp.c (reseat_to_string): Fix pointer signedness issue. 4 * xdisp.c (reseat_to_string): Fix pointer signedness issue.
4 5
52011-07-14 Lars Magne Ingebrigtsen <larsi@gnus.org> 62011-07-14 Lars Magne Ingebrigtsen <larsi@gnus.org>
diff --git a/src/indent.c b/src/indent.c
index c36b83daa02..aaeaaf591ef 100644
--- a/src/indent.c
+++ b/src/indent.c
@@ -1985,7 +1985,7 @@ whether or not it is currently displayed in some window. */)
1985 struct text_pos pt; 1985 struct text_pos pt;
1986 struct window *w; 1986 struct window *w;
1987 Lisp_Object old_buffer; 1987 Lisp_Object old_buffer;
1988 EMACS_INT old_charpos, old_bytepos; 1988 EMACS_INT old_charpos IF_LINT (= 0), old_bytepos IF_LINT (= 0);
1989 struct gcpro gcpro1, gcpro2, gcpro3; 1989 struct gcpro gcpro1, gcpro2, gcpro3;
1990 Lisp_Object lcols = Qnil; 1990 Lisp_Object lcols = Qnil;
1991 double cols IF_LINT (= 0); 1991 double cols IF_LINT (= 0);