aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog2
-rw-r--r--src/xdisp.c2
2 files changed, 3 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 68c0054114c..5131d48eff5 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,5 +1,7 @@
12011-09-24 Paul Eggert <eggert@cs.ucla.edu> 12011-09-24 Paul Eggert <eggert@cs.ucla.edu>
2 2
3 * xdisp.c (string_from_display_spec): Don't use int for vector length.
4
3 * indent.c (Fvertical_motion): Fix == vs = typo. 5 * indent.c (Fvertical_motion): Fix == vs = typo.
4 6
52011-09-24 Eli Zaretskii <eliz@gnu.org> 72011-09-24 Eli Zaretskii <eliz@gnu.org>
diff --git a/src/xdisp.c b/src/xdisp.c
index 3f545fae248..a556236835c 100644
--- a/src/xdisp.c
+++ b/src/xdisp.c
@@ -1226,7 +1226,7 @@ string_from_display_spec (Lisp_Object spec)
1226 } 1226 }
1227 else if (VECTORP (spec)) 1227 else if (VECTORP (spec))
1228 { 1228 {
1229 int i; 1229 ptrdiff_t i;
1230 1230
1231 for (i = 0; i < ASIZE (spec); i++) 1231 for (i = 0; i < ASIZE (spec); i++)
1232 { 1232 {