* xdisp.c (string_from_display_spec): Don't use int for vector length.

This commit is contained in:
Paul Eggert 2011-09-24 09:28:25 -07:00
parent 1260aef1ae
commit 9f985e85e1
2 changed files with 3 additions and 1 deletions

View file

@ -1,5 +1,7 @@
2011-09-24 Paul Eggert <eggert@cs.ucla.edu>
* xdisp.c (string_from_display_spec): Don't use int for vector length.
* indent.c (Fvertical_motion): Fix == vs = typo.
2011-09-24 Eli Zaretskii <eliz@gnu.org>

View file

@ -1226,7 +1226,7 @@ string_from_display_spec (Lisp_Object spec)
}
else if (VECTORP (spec))
{
int i;
ptrdiff_t i;
for (i = 0; i < ASIZE (spec); i++)
{